From: Ciaran Gultnieks Date: Sun, 23 Jan 2011 22:43:01 +0000 (+0000) Subject: Stop bugging me about no packages for a disabled app X-Git-Tag: 0.1~1512 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=commitdiff_plain;h=7654163a0ad0d9d3d5eaeddfd62840388edc8305;p=fdroidserver.git Stop bugging me about no packages for a disabled app --- diff --git a/update.py b/update.py index 5a6ef4e9..a8404794 100644 --- a/update.py +++ b/update.py @@ -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']