aboutsummaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorGravatar jesopo2018-10-11 12:56:18 +0100
committerGravatar jesopo2018-10-11 12:56:18 +0100
commit0e2140b99f90a687a3df4f7799d6f6149315f751 (patch)
tree1f838ec9933873e4e33626f0381bab4badc6cd9c /modules
parentStrip common characters that mark the end of a word (":;,!?~") from the end of (diff)
signature
Also strip "." from the end of words in modules/words.py
Diffstat (limited to 'modules')
-rw-r--r--modules/words.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/words.py b/modules/words.py
index e5e1ff16..1ad964c3 100644
--- a/modules/words.py
+++ b/modules/words.py
@@ -1,7 +1,7 @@
import time
from src import EventManager, ModuleManager, utils
-WORD_STOP = ";:,!?~"
+WORD_STOP = ";:.,!?~"
class Module(ModuleManager.BaseModule):
def _channel_message(self, user, event):