We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d14cd7d commit 1501d23Copy full SHA for 1501d23
1 file changed
news2rss.py
@@ -83,7 +83,7 @@ def html_to_rss(html_content, feed_title, feed_description):
83
while current and current.name != "h3":
84
content_parts.append(str(current))
85
current = current.next_sibling
86
- content = "\n".join(content_parts)
+ content = "".join(content_parts)
87
88
# Create RSS item
89
item = ET.SubElement(channel, "item")
0 commit comments