aboutsummaryrefslogtreecommitdiffstats
path: root/create-srpm
diff options
context:
space:
mode:
Diffstat (limited to 'create-srpm')
-rwxr-xr-xcreate-srpm4
1 files changed, 3 insertions, 1 deletions
diff --git a/create-srpm b/create-srpm
index a2418c2..497ecd6 100755
--- a/create-srpm
+++ b/create-srpm
@@ -10,6 +10,7 @@ import sys
import os
import pwd
import optparse
+import subprocess
import urllib.parse
import urllib.request, urllib.parse, urllib.error
import rpm
@@ -119,7 +120,8 @@ class CmdIface:
upload_command.append(x)
upload_command.append(targetname)
upload_command.extend(uploadsrpms)
- status, output = execcmd(upload_command, noerror=1)
+ command = subprocess.list2cmdline(upload_command)
+ status, output = execcmd(command, noerror=1)
for srpm in uploadsrpms:
if os.path.isfile(srpm):
os.unlink(srpm)