aboutsummaryrefslogtreecommitdiffstats
path: root/MgaRepo/util.py
diff options
context:
space:
mode:
Diffstat (limited to 'MgaRepo/util.py')
-rw-r--r--MgaRepo/util.py7
1 files changed, 5 insertions, 2 deletions
diff --git a/MgaRepo/util.py b/MgaRepo/util.py
index 62ac32e..54348d6 100644
--- a/MgaRepo/util.py
+++ b/MgaRepo/util.py
@@ -56,8 +56,11 @@ def execcmd(*cmd, **kwargs):
status = os.system(cmdstr)
output = ""
else:
- status, output = commands_getstatusoutput(
- "LANG=C LANGUAGE=C LC_ALL=C "+cmdstr)
+ if kwargs.get('info'):
+ prefix='LANGUAGE=C '
+ else:
+ prefix='LANG=C LANGUAGE=C LC_ALL=C '
+ status, output = commands_getstatusoutput(prefix + cmdstr)
verbose = config.getbool("global", "verbose", 0)
if status != 0 and not kwargs.get("noerror"):
if kwargs.get("cleanerr") and not verbose: