From f1146cc517d084f69a1ac82dc99248637df8635d Mon Sep 17 00:00:00 2001 From: Papoteur Date: Sun, 29 May 2016 12:30:10 +0200 Subject: Suppress prefix with no effect on import command. --- MgaRepo/util.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MgaRepo/util.py b/MgaRepo/util.py index 52ae50f..538eae8 100644 --- a/MgaRepo/util.py +++ b/MgaRepo/util.py @@ -65,7 +65,7 @@ def execcmd(*cmd, **kwargs): break output = err.getvalue() else: - status = os.system(prefix + cmdstr) + status = os.system(cmdstr) output = "" else: status, output = commands_getstatusoutput(prefix + cmdstr) -- cgit v1.2.1