aboutsummaryrefslogtreecommitdiff
path: root/modules/auto_mode.py
diff options
context:
space:
mode:
authorGravatar jesopo2016-04-03 17:08:48 +0100
committerGravatar jesopo2016-04-03 17:08:48 +0100
commita348bf4241397a6b114b9ee1963cae177e743d86 (patch)
treef367e63d2ed5b8cab800b7b88d8a9879ff1b4f6a /modules/auto_mode.py
parentadded some more to the skeleton of the auto_mode module. (diff)
fixed some dumb typos
Diffstat (limited to 'modules/auto_mode.py')
-rw-r--r--modules/auto_mode.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/auto_mode.py b/modules/auto_mode.py
index f58c7bee..b369bcbd 100644
--- a/modules/auto_mode.py
+++ b/modules/auto_mode.py
@@ -3,7 +3,7 @@
class Module(object):
def __init__(self, bot):
self.bot = bot
- bot.events.on("boot").on("done").hook(self.book_done)
+ bot.events.on("boot").on("done").hook(self.boot_done)
bot.events.on("channel").on("mode").hook(self.on_mode)
bot.events.on("received").on("join").hook(self.on_join)