diff options
| author | 2020-06-26 13:43:14 +0100 | |
|---|---|---|
| committer | 2020-06-26 13:43:14 +0100 | |
| commit | 32e1e40cd293bd6b1eee9cd67e6430a576da60a5 (patch) | |
| tree | 76fb6285052709417897ff6eb20d2a49fecbcc71 /modules | |
| parent | !cfilter should be accessible by channel admins (diff) | |
| signature | ||
strip ':' and ',' from titles too
Diffstat (limited to 'modules')
| -rw-r--r-- | modules/title.py | 2 |
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 |
