1
0
mirror of https://gitlab.com/fdroid/fdroidserver.git synced 2024-10-05 18:50:09 +02:00

rewritemeta: fix silly bug of using == for =

This was introduced in c0bc3afda9
This commit is contained in:
Hans-Christoph Steiner 2017-02-24 13:36:41 +01:00
parent 2a421d653c
commit 7a25dbc081

View 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)