1
0
mirror of https://gitlab.com/fdroid/fdroidserver.git synced 2024-09-17 10:40:12 +02:00

fixed exception string in build script

This commit is contained in:
Torsten Grote 2012-01-08 12:55:57 +01:00 committed by Ciaran Gultnieks
parent 6bf07ade4f
commit 564fd2df79

View File

@ -207,7 +207,8 @@ for app in apps:
raise BuildException(("Unexpected version/version code in output"
"APK: %s / %s"
"Expected: %s / %s")
) % (version, str(vercode), thisbuild['version'], str(thisbuild['vercode']))
% (version, str(vercode), thisbuild['version'], str(thisbuild['vercode']))
)
# Copy the unsigned apk to our temp directory for further
# processing...