chiark / gitweb /
rewritemeta: fix silly bug of using == for =
authorHans-Christoph Steiner <hans@eds.org>
Fri, 24 Feb 2017 12:36:41 +0000 (13:36 +0100)
committerHans-Christoph Steiner <hans@eds.org>
Fri, 24 Feb 2017 12:36:41 +0000 (13:36 +0100)
This was introduced in c0bc3afda9d67a826471df2f387ab1b489df04e0

fdroidserver/metadata.py

index e10013d16c016a8f0ae671983590b1d1168a3764..a13e3945537a284fac1f49fd7233b708348658d9 100644 (file)
@@ -224,7 +224,7 @@ build_flags_order = [
     'rm',
     'extlibs',
     'prebuild',
-    'update',
+    'androidupdate',
     'target',
     'scanignore',
     'scandelete',
@@ -1275,7 +1275,7 @@ def write_txt(mf, app):
 
             t = flagtype(f)
             if f == 'androidupdate':
-                f == 'update'  # avoid conflicting with Build(dict).update()
+                f = 'update'  # avoid conflicting with Build(dict).update()
             mf.write('    %s=' % f)
             if t == TYPE_STRING:
                 mf.write(v)