aboutsummaryrefslogtreecommitdiffstats
path: root/MgaRepo/util.py
diff options
context:
space:
mode:
Diffstat (limited to 'MgaRepo/util.py')
-rw-r--r--MgaRepo/util.py2
1 files changed, 1 insertions, 1 deletions
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)