aboutsummaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorGravatar jesopo2019-07-09 20:58:02 +0100
committerGravatar jesopo2019-07-09 20:58:02 +0100
commit9ffe62f27ea9848f011b8487fb35442ecd432f42 (patch)
treed26a45bd0191a324cf351ad099ae58760966b05d /modules
parentadd ops.py (diff)
signature
'evnet' -> 'event' typo
Diffstat (limited to 'modules')
-rw-r--r--modules/slowvoice.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/slowvoice.py b/modules/slowvoice.py
index 188bb4c1..dfbc40a8 100644
--- a/modules/slowvoice.py
+++ b/modules/slowvoice.py
@@ -36,7 +36,7 @@ class Module(ModuleManager.BaseModule):
@utils.hook("received.quit")
def on_quit(self, event):
- for channel in evnet["user"].channels:
+ for channel in event["user"].channels:
self._cancel_timer(event["user"], channel)
@utils.hook("self.part")