mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-09-14 15:02:51 +03:00
Warn about empty categs
This commit is contained in:
parent
ac004264f0
commit
7c0228d89c
1 changed files with 2 additions and 0 deletions
|
@ -198,6 +198,8 @@ def main():
|
||||||
# "None" still a category
|
# "None" still a category
|
||||||
if 'None' in app['Categories']:
|
if 'None' in app['Categories']:
|
||||||
warn("Category 'None' is is still present")
|
warn("Category 'None' is is still present")
|
||||||
|
elif not app['Categories']:
|
||||||
|
warn("Categories are not set")
|
||||||
|
|
||||||
name = app['Name'] or app['Auto Name']
|
name = app['Name'] or app['Auto Name']
|
||||||
if app['Summary'] and name:
|
if app['Summary'] and name:
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue