aboutsummaryrefslogtreecommitdiff
path: root/modules/rss.py
diff options
context:
space:
mode:
Diffstat (limited to 'modules/rss.py')
-rw-r--r--modules/rss.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/modules/rss.py b/modules/rss.py
index 159bdbf6..e18ef18b 100644
--- a/modules/rss.py
+++ b/modules/rss.py
@@ -18,7 +18,8 @@ class Module(ModuleManager.BaseModule):
self.bot.get_setting("rss-interval", RSS_INTERVAL))
def _format_entry(self, server, feed_title, entry, shorten):
- title = utils.http.strip_html(entry["title"])
+ title = utils.parse.line_normalise(utils.http.strip_html(
+ entry["title"]))
author = entry.get("author", None)
author = " by %s" % author if author else ""