From 9d3cb7952da9e770615d7a8497a00b23c33eab6b Mon Sep 17 00:00:00 2001 From: Jeremy Fincher Date: Mon, 20 Dec 2004 19:23:58 +0000 Subject: [PATCH] Misspelling. --- ChangeLog | 5 ++++- plugins/AutoMode.py | 2 +- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index 2f4bcfe58..ad7c95421 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,4 +1,7 @@ - * Fixed bug with ChannelValues picking up children that aren't + * Fixed a bug with AutoMode's auto-banning feature; a variable + was misspelled. + + * Fixed a bug with ChannelValues picking up children that aren't channels. * Fixed Misc.apropos not to be case-sensitive. diff --git a/plugins/AutoMode.py b/plugins/AutoMode.py index 18a75947d..2f686ef80 100644 --- a/plugins/AutoMode.py +++ b/plugins/AutoMode.py @@ -131,7 +131,7 @@ class AutoMode(callbacks.Privmsg): pass schedule.addEvent(unban, time.time()+period) irc.queueMsg(ircmsgs.ban(channel, msg.prefix)) - irc.queueMsg(irmcsgs.kick(channel, msg.nick)) + irc.queueMsg(ircmsgs.kick(channel, msg.nick)) Class = AutoMode