From f372e877cb32a6c009e29ff9ddf1a14f8b2fd216 Mon Sep 17 00:00:00 2001 From: Papoteur Date: Sat, 5 Nov 2016 15:38:08 +0100 Subject: Revert to 1.12.3 state --- MgaRepo/binrepo.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'MgaRepo/binrepo.py') diff --git a/MgaRepo/binrepo.py b/MgaRepo/binrepo.py index 0df8088..89679b0 100644 --- a/MgaRepo/binrepo.py +++ b/MgaRepo/binrepo.py @@ -102,12 +102,12 @@ def upload_binary(topdir, filename): return host = config.get("binrepo", "upload_host") upload_bin_helper = get_helper("upload-bin") - command = ["ssh", host, upload_bin_helper, filename] + command = "ssh %s %s %s" % (host, upload_bin_helper, filename) try: 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, geterr=True, stdin=filein) def import_binaries(topdir, pkgname): """Import all binaries from a given package checkout -- cgit v1.2.1