From 58b0e0a385337f6080ef0dd426bfa2a0ee9c53d8 Mon Sep 17 00:00:00 2001 From: Devan Goodwin Date: Thu, 25 May 2017 08:09:24 -0300 Subject: [PATCH] Revert "use LC_ALL=C.UTF-8 rather than plain C" --- src/tito/common.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tito/common.py b/src/tito/common.py index f63387a..80ceced 100644 --- a/src/tito/common.py +++ b/src/tito/common.py @@ -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)