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

More detail for package ID mismatches

This commit is contained in:
Ciaran Gultnieks 2015-01-10 15:13:38 +00:00
parent d1cf1c37b4
commit 38f975dd49

View File

@ -211,7 +211,8 @@ def check_repomanifest(app, branch=None):
if not package:
return (None, "Couldn't find package ID")
if package != appid:
return (None, "Package ID mismatch")
return (None, "Package ID mismatch - expected {0}, got {1}"
.format(appid, package))
if not version:
return (None, "Couldn't find latest version name")
if not vercode: