chiark / gitweb /
Typo fix for 91daacb8896e796
authorDaniel Martí <mvdan@mvdan.cc>
Sat, 24 Oct 2015 16:37:57 +0000 (18:37 +0200)
committerDaniel Martí <mvdan@mvdan.cc>
Sat, 24 Oct 2015 16:37:57 +0000 (18:37 +0200)
fdroidserver/common.py

index b668ef29a09d0dfc3c71e9ab0cf7aacbdccfd20c..fb64fce7aa6c8e5cba7bf06359da3cd4db39ce65 100644 (file)
@@ -1585,7 +1585,7 @@ def SdkToolsPopen(commands, cwd=None, output=True):
     if abscmd is None:
         logging.critical("Could not find '%s' on your system" % cmd)
         sys.exit(1)
-    return FDroidPopen(abscmd + commands[1:],
+    return FDroidPopen([abscmd] + commands[1:],
                        cwd=cwd, output=output)