Add ` and * to characters stripped from start/end or words in modules/words.py
This commit is contained in:
parent
e6a55b2b22
commit
382728e83e
1 changed files with 3 additions and 2 deletions
|
@ -1,8 +1,9 @@
|
||||||
import time
|
import time
|
||||||
from src import EventManager, ModuleManager, utils
|
from src import EventManager, ModuleManager, utils
|
||||||
|
|
||||||
WORD_START = "\"“'({<…"
|
WORD_DELIM = "\"'…~*`"
|
||||||
WORD_STOP = "\"”')}>;:.,!?~…"
|
WORD_START = WORD_DELIM+"“({<"
|
||||||
|
WORD_STOP = WORD_DELIM+"”)}>;:.,!?"
|
||||||
|
|
||||||
class Module(ModuleManager.BaseModule):
|
class Module(ModuleManager.BaseModule):
|
||||||
def _channel_message(self, user, event):
|
def _channel_message(self, user, event):
|
||||||
|
|
Loading…
Reference in a new issue