aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPapoteur <papoteur@mageialinux-online.org>2016-05-29 12:30:10 +0200
committerPapoteur <papoteur@mageialinux-online.org>2016-05-29 12:30:10 +0200
commitf1146cc517d084f69a1ac82dc99248637df8635d (patch)
tree25b0534061120b374e5ffcc28ef77342b2459cf4
parent8fc7ce395e1d9370896fe7a14e0128177fcd8c4f (diff)
downloadmgarepo-f1146cc517d084f69a1ac82dc99248637df8635d.tar
mgarepo-f1146cc517d084f69a1ac82dc99248637df8635d.tar.gz
mgarepo-f1146cc517d084f69a1ac82dc99248637df8635d.tar.bz2
mgarepo-f1146cc517d084f69a1ac82dc99248637df8635d.tar.xz
mgarepo-f1146cc517d084f69a1ac82dc99248637df8635d.zip
Suppress prefix with no effect on import command.
-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)