1
0
mirror of https://gitlab.com/fdroid/fdroidserver.git synced 2024-08-15 10:50:09 +02: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:
Hans-Christoph Steiner 2017-04-27 20:40:08 +02:00
parent 0d00705aed
commit 4f758f5c78

View File

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