mirror of
https://github.com/rpm-software-management/tito.git
synced 2025-02-23 20:22:46 +00:00
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:
commit
19d38ad203
1 changed files with 1 additions and 1 deletions
|
@ -442,7 +442,7 @@ def run_command_print(command):
|
||||||
"""
|
"""
|
||||||
output = []
|
output = []
|
||||||
env = os.environ.copy()
|
env = os.environ.copy()
|
||||||
env['LC_ALL'] = 'C.UTF-8'
|
env['LC_ALL'] = 'C'
|
||||||
p = subprocess.Popen(shlex.split(command),
|
p = subprocess.Popen(shlex.split(command),
|
||||||
stdout=subprocess.PIPE, stderr=subprocess.STDOUT, env=env,
|
stdout=subprocess.PIPE, stderr=subprocess.STDOUT, env=env,
|
||||||
universal_newlines=True)
|
universal_newlines=True)
|
||||||
|
|
Loading…
Add table
Reference in a new issue