From 9295254ccb94169958f4dccf00ffd385ce324d48 Mon Sep 17 00:00:00 2001 From: Jeremy Fincher Date: Wed, 9 Apr 2003 18:21:48 +0000 Subject: [PATCH] Wrong index. --- plugins/Relay.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/Relay.py b/plugins/Relay.py index c3a3d7a84..aca33b73b 100644 --- a/plugins/Relay.py +++ b/plugins/Relay.py @@ -309,7 +309,7 @@ class Relay(callbacks.Privmsg): else: s = '%s/%s has quit.' % (msg.nick, network) for channel in self.channels: - if msg.nick in self.ircstates[irc][1].channels[channel].users: + if msg.nick in self.ircstates[irc][0].channels[channel].users: for otherIrc in self.ircs.itervalues(): if otherIrc != irc: otherIrc.queueMsg(ircmsgs.privmsg(channel, s))