From 32e1e40cd293bd6b1eee9cd67e6430a576da60a5 Mon Sep 17 00:00:00 2001 From: jesopo Date: Fri, 26 Jun 2020 13:43:14 +0100 Subject: [PATCH] strip ':' and ',' from titles too --- modules/title.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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