Kaydet (Commit) 29f62976 authored tarafından Éric Araujo's avatar Éric Araujo

Fix wrong use of root logger in packaging (also a NameError)

üst 2ef905d4
...@@ -782,7 +782,7 @@ def spawn(cmd, search_path=True, verbose=0, dry_run=False, env=None): ...@@ -782,7 +782,7 @@ def spawn(cmd, search_path=True, verbose=0, dry_run=False, env=None):
""" """
logger.debug('spawn: running %r', cmd) logger.debug('spawn: running %r', cmd)
if dry_run: if dry_run:
logging.debug('dry run, no process actually spawned') logger.debug('dry run, no process actually spawned')
return return
if sys.platform == 'darwin': if sys.platform == 'darwin':
global _cfg_target, _cfg_target_split global _cfg_target, _cfg_target_split
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment