diff options
Diffstat (limited to 'modules')
| -rw-r--r-- | modules/words.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/modules/words.py b/modules/words.py index 8982326c..b7e3e45c 100644 --- a/modules/words.py +++ b/modules/words.py @@ -1,8 +1,9 @@ import time from src import EventManager, ModuleManager, utils -WORD_START = "\"“'({<…" -WORD_STOP = "\"”')}>;:.,!?~…" +WORD_DELIM = "\"'…~*`" +WORD_START = WORD_DELIM+"“({<" +WORD_STOP = WORD_DELIM+"”)}>;:.,!?" class Module(ModuleManager.BaseModule): def _channel_message(self, user, event): |
