Misspelling.

This commit is contained in:
Jeremy Fincher 2004-12-20 19:23:58 +00:00
parent 6d9cc6855d
commit 9d3cb7952d
2 changed files with 5 additions and 2 deletions

View File

@ -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.

View File

@ -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