aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar jesopo2020-06-26 13:43:14 +0100
committerGravatar jesopo2020-06-26 13:43:14 +0100
commit32e1e40cd293bd6b1eee9cd67e6430a576da60a5 (patch)
tree76fb6285052709417897ff6eb20d2a49fecbcc71
parent!cfilter should be accessible by channel admins (diff)
signature
strip ':' and ',' from titles too
-rw-r--r--modules/title.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/title.py b/modules/title.py
index 9735d667..eba18566 100644
--- a/modules/title.py
+++ b/modules/title.py
@@ -27,7 +27,7 @@ class Module(ModuleManager.BaseModule):
for title_word in RE_WORDSPLIT.split(title):
if len(title_word) > 1 or title_word.isalpha():
title_word = title_word.lower()
- title_words.append(title_word.strip("'\"<>()"))
+ title_words.append(title_word.strip("'\"<>(),:"))
if title_words:
present = 0