Had wrong channel argument in IrcStat.do332.

This commit is contained in:
Jeremy Fincher 2003-06-02 07:27:43 +00:00
parent 800efee2ea
commit f35c9e8d05
1 changed files with 1 additions and 1 deletions

View File

@ -292,7 +292,7 @@ class IrcState(IrcCommandDispatcher):
chan.topic = msg.args[1]
def do332(self, irc, msg):
chan = self.channels[msg.args[0]]
chan = self.channels[msg.args[1]]
chan.topic = msg.args[2]
def doNick(self, irc, msg):