chiark / gitweb /
Wiki update code for disabled builds can be simplified now
authorCiaran Gultnieks <ciaran@ciarang.com>
Tue, 29 Oct 2013 17:39:05 +0000 (17:39 +0000)
committerCiaran Gultnieks <ciaran@ciarang.com>
Tue, 29 Oct 2013 17:39:05 +0000 (17:39 +0000)
fdroidserver/update.py

index ac99b2acd376b0d4a7fb3330962b0da4879571ec..b6211966c729a9d07a69d59b6eeda43a6bbc2909 100644 (file)
@@ -88,14 +88,14 @@ def update_wiki(apps, apks, verbose=False):
                 apklist.append(apk)
         # Include ones we can't build, as a special case...
         for thisbuild in app['builds']:
-            if thisbuild['commit'].startswith('!') or 'disable' in thisbuild:
+            if 'disable' in thisbuild:
                 if thisbuild['vercode'] == app['Current Version Code']:
                     cantupdate = True
                 apklist.append({
                         #TODO: Nasty: vercode is a string in the build, and an int elsewhere
                         'versioncode': int(thisbuild['vercode']),
                         'version': thisbuild['version'],
-                        'buildproblem': thisbuild.get('disable', thisbuild['commit'][1:])
+                        'buildproblem': thisbuild['disable']
                     })
             else:
                 builtit = False