diff options
| author | 2016-04-03 17:08:48 +0100 | |
|---|---|---|
| committer | 2016-04-03 17:08:48 +0100 | |
| commit | a348bf4241397a6b114b9ee1963cae177e743d86 (patch) | |
| tree | f367e63d2ed5b8cab800b7b88d8a9879ff1b4f6a /modules | |
| parent | added some more to the skeleton of the auto_mode module. (diff) | |
fixed some dumb typos
Diffstat (limited to 'modules')
| -rw-r--r-- | modules/auto_mode.py | 2 |
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) |
