1
0
mirror of https://gitlab.com/fdroid/fdroidserver.git synced 2024-10-03 17:50:11 +02:00

Stop bugging me about no packages for a disabled app

This commit is contained in:
Ciaran Gultnieks 2011-01-23 22:43:01 +00:00
parent 6e96b79f6e
commit 7654163a0a

View File

@ -183,7 +183,8 @@ for app in apps:
if app['name'] is None:
app['name'] = app['id']
app['icon'] = ''
print "WARNING: Application " + app['id'] + " has no packages"
if app['disabled'] is None:
print "WARNING: Application " + app['id'] + " has no packages"
else:
if app['name'] is None:
app['name'] = bestapk['name']