aboutsummaryrefslogtreecommitdiff
path: root/modules/title.py
diff options
context:
space:
mode:
Diffstat (limited to 'modules/title.py')
-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