Fixed #28773 -- Forced pot files to use UNIX-style newlines
Thanks Hendy Irawan for the analysis and report.
This commit is contained in:
parent
616f468760
commit
4f5526e346
|
@ -188,7 +188,9 @@ def write_pot_file(potfile, msgs):
|
||||||
header_read = True
|
header_read = True
|
||||||
lines.append(line)
|
lines.append(line)
|
||||||
msgs = '\n'.join(lines)
|
msgs = '\n'.join(lines)
|
||||||
with open(potfile, 'a', encoding='utf-8') as fp:
|
# Force newlines of POT files to '\n' to work around
|
||||||
|
# https://savannah.gnu.org/bugs/index.php?52395
|
||||||
|
with open(potfile, 'a', encoding='utf-8', newline='\n') as fp:
|
||||||
fp.write(msgs)
|
fp.write(msgs)
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue