diff options
author | Papoteur <papoteur@mageialinux-online.org> | 2016-03-09 08:16:24 +0100 |
---|---|---|
committer | Papoteur <papoteur@mageialinux-online.org> | 2016-03-09 08:16:24 +0100 |
commit | c38f7d11b2053939d0004653456a2fa8f8220972 (patch) | |
tree | 66fa492ca13f901791658a577bde4fbd0a6a9c0d | |
parent | 69e3eb9134722b35b5936a34edaae17e849579b2 (diff) | |
download | mgarepo-c38f7d11b2053939d0004653456a2fa8f8220972.tar mgarepo-c38f7d11b2053939d0004653456a2fa8f8220972.tar.gz mgarepo-c38f7d11b2053939d0004653456a2fa8f8220972.tar.bz2 mgarepo-c38f7d11b2053939d0004653456a2fa8f8220972.tar.xz mgarepo-c38f7d11b2053939d0004653456a2fa8f8220972.zip |
Revert commit be8b4f9c74519aeacdcecb797722ce2682a68cb2
Restore prefix command because of pb in import command
-rw-r--r-- | MgaRepo/util.py | 2 |
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) |