diff options
| author | 2016-04-03 17:08:48 +0100 | |
|---|---|---|
| committer | 2016-04-03 17:08:48 +0100 | |
| commit | a348bf4241397a6b114b9ee1963cae177e743d86 (patch) | |
| tree | f367e63d2ed5b8cab800b7b88d8a9879ff1b4f6a /IRCLineHandler.py | |
| parent | added some more to the skeleton of the auto_mode module. (diff) | |
fixed some dumb typos
Diffstat (limited to 'IRCLineHandler.py')
| -rw-r--r-- | IRCLineHandler.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/IRCLineHandler.py b/IRCLineHandler.py index 406dcfd8..df06cba0 100644 --- a/IRCLineHandler.py +++ b/IRCLineHandler.py @@ -215,7 +215,7 @@ def handle_MODE(): channel.add_mode(char, nickname) else: args.pop(0) - bot.events.on("received").on("mode").call( + bot.events.on("received").on("mode").call( line=line, line_split=line_split, server=server, bot=bot, modes=modes, args=args, channel=channel) elif server.is_own_nickname(target): @@ -231,7 +231,7 @@ def handle_MODE(): server.remove_own_mode(char) else: server.add_own_mode(char) - bot.events.on("self").on("mode").call( + bot.events.on("self").on("mode").call( line=line, line_split=line_split, server=server, bot=bot, modes=modes) @handler(description="I've been invited somewhere") |
