aboutsummaryrefslogtreecommitdiff
path: root/modules/channel_save.py
diff options
context:
space:
mode:
authorGravatar jesopo2018-07-02 12:51:18 +0100
committerGravatar jesopo2018-07-02 12:51:18 +0100
commit7affd3b9f3685824f85218ddc2d3bbd3f4d5711b (patch)
tree97b231599ffa0baa10ea9e3015bc6ccb6193df7f /modules/channel_save.py
parentAdded an event hook priority system (diff)
signature
Add missing on_kick event hook in channel_save
Diffstat (limited to 'modules/channel_save.py')
-rw-r--r--modules/channel_save.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/modules/channel_save.py b/modules/channel_save.py
index 5234e168..29114cd4 100644
--- a/modules/channel_save.py
+++ b/modules/channel_save.py
@@ -4,6 +4,7 @@ class Module(object):
def __init__(self, bot):
bot.events.on("self").on("part").hook(self.on_self_part)
bot.events.on("self").on("join").hook(self.on_join)
+ bot.events.on("self").on("kick").hook(self.on_kick)
bot.events.on("received").on("numeric").on("366").hook(
self.on_identify_trigger)
bot.events.on("received").on("numeric").on("001").hook(