mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-11-06 15:30:28 +03:00
Also catch cases where stored is e.g. None
This commit is contained in:
parent
934037fe3c
commit
d04d4cc24c
1 changed files with 1 additions and 1 deletions
|
|
@ -314,7 +314,7 @@ def main():
|
||||||
print "%s encountered a problem: %s" % (common.getappname(app), reason)
|
print "%s encountered a problem: %s" % (common.getappname(app), reason)
|
||||||
if version is not None:
|
if version is not None:
|
||||||
stored = app['Current Version']
|
stored = app['Current Version']
|
||||||
if stored == '':
|
if not stored:
|
||||||
if options.verbose:
|
if options.verbose:
|
||||||
print "%s has no Current Version but has version %s on the Play Store" % (
|
print "%s has no Current Version but has version %s on the Play Store" % (
|
||||||
common.getappname(app), version)
|
common.getappname(app), version)
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue