mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-11-05 06:50:29 +03:00
Better identify empty licenses
This commit is contained in:
parent
edda052000
commit
214d63e48f
1 changed files with 3 additions and 3 deletions
|
|
@ -160,9 +160,9 @@ def main():
|
|||
pwarn("Last used commit '%s' looks like a tag, but Update Check Mode is '%s'" % (
|
||||
lastcommit, app['Update Check Mode']))
|
||||
|
||||
# No license
|
||||
if app['License'] == 'Unknown':
|
||||
warn("License was not properly set")
|
||||
# No proper license
|
||||
if app['License'] in ('Unknown','None',''):
|
||||
warn("License was not set")
|
||||
|
||||
# Summary size limit
|
||||
summ_chars = len(app['Summary'])
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue