mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-10-05 17:01:06 +03: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
1 changed files with 1 additions and 1 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue