From d7275d75d385dd74d03f7bb11f3cd9578b39294d Mon Sep 17 00:00:00 2001 From: Jeremy Fincher Date: Thu, 4 Nov 2004 06:43:38 +0000 Subject: [PATCH] Relay nicks should still work when the bot isn't in the channel on a network. --- plugins/Relay.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/plugins/Relay.py b/plugins/Relay.py index 0cc4f14ed..8d1b3ede0 100644 --- a/plugins/Relay.py +++ b/plugins/Relay.py @@ -200,9 +200,8 @@ class Relay(callbacks.Privmsg): try: Channel = otherIrc.state.channels[channel] except KeyError: - s = 'Somehow I\'m not in %s on %s.'% (channel, network) - irc.error(s) - return + users.append('(not in %s on %s)' % (channel, network)) + continue numUsers = 0 for s in Channel.users: s = s.strip()