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