From: Ciaran Gultnieks Date: Thu, 16 Jan 2014 08:58:49 +0000 (+0000) Subject: Resolve some missing wiki category issues X-Git-Tag: 0.2~398 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=commitdiff_plain;h=450685fe2f6487c21a657f53e89854f157d9d186;p=fdroidserver.git Resolve some missing wiki category issues --- diff --git a/fdroidserver/update.py b/fdroidserver/update.py index 17749216..ceb4d392 100644 --- a/fdroidserver/update.py +++ b/fdroidserver/update.py @@ -175,11 +175,11 @@ def update_wiki(apps, apks): wikidata += '\n[[Category:' + wikicat + ']]\n' if len(app['No Source Since']) > 0: wikidata += '\n[[Category:Apps missing source code]]\n' - elif validapks == 0 and not app['Disabled']: + if validapks == 0 and not app['Disabled']: wikidata += '\n[[Category:Apps with no packages]]\n' - elif cantupdate and not app['Disabled']: + if cantupdate and not app['Disabled']: wikidata += "\n[[Category:Apps we can't update]]\n" - elif buildfails and not app['Disabled']: + if buildfails and not app['Disabled']: wikidata += "\n[[Category:Apps with failing builds]]\n" elif not gotcurrentver and not app['Disabled'] and app['Update Check Mode'] != "Static": wikidata += '\n[[Category:Apps to Update]]\n'