From f35c9e8d055a9ee0068e3a26c27e873ff8021e06 Mon Sep 17 00:00:00 2001 From: Jeremy Fincher Date: Mon, 2 Jun 2003 07:27:43 +0000 Subject: [PATCH] Had wrong channel argument in IrcStat.do332. --- src/irclib.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/irclib.py b/src/irclib.py index 551c08d02..88557e4fb 100644 --- a/src/irclib.py +++ b/src/irclib.py @@ -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):