Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 29f6297

Browse files
committed
Fix wrong use of root logger in packaging (also a NameError)
1 parent 2ef905d commit 29f6297

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Lib/packaging/util.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -782,7 +782,7 @@ def spawn(cmd, search_path=True, verbose=0, dry_run=False, env=None):
782782
"""
783783
logger.debug('spawn: running %r', cmd)
784784
if dry_run:
785-
logging.debug('dry run, no process actually spawned')
785+
logger.debug('dry run, no process actually spawned')
786786
return
787787
if sys.platform == 'darwin':
788788
global _cfg_target, _cfg_target_split

0 commit comments

Comments
 (0)