mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-10-05 08:51:06 +03:00
Merge branch 'metadata-write-int' into 'master'
metadata: write values of TYPE_INT fields See merge request fdroid/fdroidserver!456
This commit is contained in:
commit
2238b5cafd
1 changed files with 1 additions and 1 deletions
|
@ -1521,7 +1521,7 @@ def write_txt(mf, app):
|
||||||
if f == 'androidupdate':
|
if f == 'androidupdate':
|
||||||
f = 'update' # avoid conflicting with Build(dict).update()
|
f = 'update' # avoid conflicting with Build(dict).update()
|
||||||
mf.write(' %s=' % f)
|
mf.write(' %s=' % f)
|
||||||
if t == TYPE_STRING:
|
if t == TYPE_STRING or t == TYPE_INT:
|
||||||
mf.write(v)
|
mf.write(v)
|
||||||
elif t == TYPE_BOOL:
|
elif t == TYPE_BOOL:
|
||||||
mf.write('yes')
|
mf.write('yes')
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue