mirror of
https://github.com/django/django.git
synced 2025-09-27 12:39:17 +00:00
[2.0.x] Fixed #28773 -- Forced pot files to use UNIX-style newlines
Thanks Hendy Irawan for the analysis and report.
Backport of 4f5526e346
from master.
This commit is contained in:
parent
75c1fd6538
commit
aba31aa86b
1 changed files with 3 additions and 1 deletions
|
@ -188,7 +188,9 @@ def write_pot_file(potfile, msgs):
|
|||
header_read = True
|
||||
lines.append(line)
|
||||
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)
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue