Skip to content

Commit

Permalink
Ensure comments have newlines
Browse files Browse the repository at this point in the history
This broke the building of language packs as multiline comments
ended up in a single line.
  • Loading branch information
dwaynebailey committed Dec 13, 2012
1 parent 80fcb17 commit e0d8001
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion translate/convert/prop2mozfunny.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ def prop2inc(pf):
for blank in pendingblanks:
yield blank
# TODO: could convert commented # x=y back to # #define x y
yield comment
yield comment + "\n"
if unit.isblank():
pendingblanks.append("\n")
else:
Expand Down

0 comments on commit e0d8001

Please sign in to comment.