mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-09-16 07:52:35 +03:00
When parsing manifests, default version name to "Unknown"
This commit is contained in:
parent
eb7a2d9e63
commit
562f539e96
1 changed files with 3 additions and 0 deletions
|
@ -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):
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue