Skip to content
Snippets Groups Projects
Commit 600831ba authored by Chris Lamb's avatar Chris Lamb :eyes:
Browse files

Add the current PATH environment variable to the "Normalising locale..."...

Add the current PATH environment variable to the "Normalising locale..." debug-level logging message.
parent 026ff749
No related branches found
No related tags found
No related merge requests found
......@@ -30,7 +30,10 @@ def set_locale():
output.
"""
logger.debug("Normalising locale, timezone, etc.")
logger.debug(
"Normalising locale, timezone, etc. Inheriting PATH of %s",
os.environ.get('PATH', '(none)'),
)
for x in ('LANGUAGE', 'LC_ALL'):
os.environ.pop(x, None)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment