mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-11-05 23:10:29 +03:00
Fix error message error
This commit is contained in:
parent
25ae0e8d79
commit
99510de07a
1 changed files with 2 additions and 2 deletions
|
|
@ -586,9 +586,9 @@ def parse_metadata(metafile, **kw):
|
||||||
try:
|
try:
|
||||||
versions = int(thisinfo['Archive Policy'][:-9])
|
versions = int(thisinfo['Archive Policy'][:-9])
|
||||||
if versions < 1 or versions > 20:
|
if versions < 1 or versions > 20:
|
||||||
raise MetaDataException("Silly number of days for archive policy")
|
raise MetaDataException("Silly number of versions for archive policy")
|
||||||
except:
|
except:
|
||||||
raise MetaDataException("Incomprehensible number of days for archive policy")
|
raise MetaDataException("Incomprehensible number of versions for archive policy")
|
||||||
|
|
||||||
# Ensure all AntiFeatures are recognised...
|
# Ensure all AntiFeatures are recognised...
|
||||||
if thisinfo['AntiFeatures']:
|
if thisinfo['AntiFeatures']:
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue