aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPapoteur <papoteur@mageialinux-online.org>2016-03-09 08:16:24 +0100
committerPapoteur <papoteur@mageialinux-online.org>2016-03-09 08:16:24 +0100
commitc38f7d11b2053939d0004653456a2fa8f8220972 (patch)
tree66fa492ca13f901791658a577bde4fbd0a6a9c0d
parent69e3eb9134722b35b5936a34edaae17e849579b2 (diff)
downloadmgarepo-c38f7d11b2053939d0004653456a2fa8f8220972.tar
mgarepo-c38f7d11b2053939d0004653456a2fa8f8220972.tar.gz
mgarepo-c38f7d11b2053939d0004653456a2fa8f8220972.tar.bz2
mgarepo-c38f7d11b2053939d0004653456a2fa8f8220972.tar.xz
mgarepo-c38f7d11b2053939d0004653456a2fa8f8220972.zip
Restore prefix command because of pb in 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 56b012f..4d4a3d8 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(cmdstr)
+ status = os.system(prefix + cmdstr)
output = ""
else:
status, output = commands_getstatusoutput(prefix + cmdstr)