mirror of
https://gitlab.com/fdroid/fdroidserver.git
synced 2024-11-13 18:40:12 +01:00
fix white space trimming when writing .txt format
Some of the internal data format changes somehow broke the white space trimming when writing out .txt. closes #285
This commit is contained in:
parent
0d00705aed
commit
4f758f5c78
@ -1315,7 +1315,7 @@ def write_txt(mf, app):
|
||||
first = False
|
||||
else:
|
||||
mf.write(' && \\\n ')
|
||||
mf.write(s)
|
||||
mf.write(s.strip())
|
||||
elif t == TYPE_LIST:
|
||||
mf.write(','.join(v))
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user