Relay nicks should still work when the bot isn't in the channel on a network.

This commit is contained in:
Jeremy Fincher 2004-11-04 06:43:38 +00:00
parent 591e66664d
commit d7275d75d3
1 changed files with 2 additions and 3 deletions

View File

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