Merge pull request #288 from dgoodwin/revert-286-lc

Revert "use LC_ALL=C.UTF-8 rather than plain C"
This commit is contained in:
Devan Goodwin 2017-05-25 09:09:37 -03:00 committed by GitHub
commit 19d38ad203

View file

@ -442,7 +442,7 @@ def run_command_print(command):
"""
output = []
env = os.environ.copy()
env['LC_ALL'] = 'C.UTF-8'
env['LC_ALL'] = 'C'
p = subprocess.Popen(shlex.split(command),
stdout=subprocess.PIPE, stderr=subprocess.STDOUT, env=env,
universal_newlines=True)