strip ':' and ',' from titles too
This commit is contained in:
parent
dc8ece9f95
commit
32e1e40cd2
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue