From 450685fe2f6487c21a657f53e89854f157d9d186 Mon Sep 17 00:00:00 2001 From: Ciaran Gultnieks Date: Thu, 16 Jan 2014 08:58:49 +0000 Subject: [PATCH] Resolve some missing wiki category issues --- fdroidserver/update.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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' -- 2.30.2