diff options
Diffstat (limited to 'MgaRepo')
-rw-r--r-- | MgaRepo/binrepo.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/MgaRepo/binrepo.py b/MgaRepo/binrepo.py index 2d08300..0df8088 100644 --- a/MgaRepo/binrepo.py +++ b/MgaRepo/binrepo.py @@ -107,7 +107,7 @@ def upload_binary(topdir, filename): filein = open(filepath, 'r') except Error as e: raise Error("Could not open file %s\n" % filepath) - status, output = execcmd(command, show=True, collecterr=True, stdin=filein) + status, output = execcmd(*command, show=True, collecterr=True, stdin=filein) def import_binaries(topdir, pkgname): """Import all binaries from a given package checkout |