mirror of
https://github.com/freedoom/freedoom.git
synced 2025-09-01 22:25:46 -04:00
scripts: Fix extra newline for news-to-feed
news-to-feed added an extra newline at the end.
This commit is contained in:
parent
33b6e25907
commit
e8b3dc2a6a
1 changed files with 1 additions and 1 deletions
|
@ -189,7 +189,7 @@ def main():
|
||||||
# Write the feed to feed_xml.
|
# Write the feed to feed_xml.
|
||||||
def output_feed():
|
def output_feed():
|
||||||
with open(feed_xml, "w") as feed_hand:
|
with open(feed_xml, "w") as feed_hand:
|
||||||
print(doc.toprettyxml(indent=" "), file=feed_hand)
|
print(doc.toprettyxml(indent=" "), file=feed_hand, end="")
|
||||||
|
|
||||||
|
|
||||||
# Parse the command line arguments and store the result in 'args'.
|
# Parse the command line arguments and store the result in 'args'.
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue