aboutsummaryrefslogtreecommitdiff
path: root/modules/rss.py
diff options
context:
space:
mode:
authorGravatar jesopo2019-10-10 10:20:34 +0100
committerGravatar jesopo2019-10-10 10:20:44 +0100
commitcf1002a2a972f832a6c62bbb91a2c97836693b92 (patch)
tree123aec9d1951259aa131cc2e91516a5b7d30e02c /modules/rss.py
parent!editserver only need an alias to exist, not to be currently connected (diff)
signature
strip HTML from RSS entry titles
closes #174
Diffstat (limited to 'modules/rss.py')
-rw-r--r--modules/rss.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/rss.py b/modules/rss.py
index e8e237da..159bdbf6 100644
--- a/modules/rss.py
+++ b/modules/rss.py
@@ -18,7 +18,7 @@ class Module(ModuleManager.BaseModule):
self.bot.get_setting("rss-interval", RSS_INTERVAL))
def _format_entry(self, server, feed_title, entry, shorten):
- title = entry["title"]
+ title = utils.http.strip_html(entry["title"])
author = entry.get("author", None)
author = " by %s" % author if author else ""