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

When parsing manifests, default version name to "Unknown"

This commit is contained in:
Daniel Martí 2013-08-15 16:01:33 +02:00
parent eb7a2d9e63
commit 562f539e96

View File

@ -975,6 +975,9 @@ def parse_androidmanifests(paths):
max_vercode = vercode
max_package = package
if max_version is None:
max_version = "Unknown"
return (max_version, max_vercode, max_package)
class BuildException(Exception):