Finished polishing relaynames

This commit is contained in:
Jeremy Fincher 2003-03-27 21:28:15 +00:00
parent b67f2fa874
commit c582cd9834
1 changed files with 3 additions and 3 deletions

View File

@ -116,17 +116,17 @@ class Relay(privmsgs.CapabilityCheckingPrivmsg):
def relaynames(self, irc, msg, args):
"[<channel>] (only if not sent in the channel itself.)"
if not isinstance(irc, irclib.Irc):
irc = irc.getRealIrc()
realIrc = irc.getRealIrc()
channel = privmsgs.getChannel(msg, args)
if channel not in self.channels:
irc.error(msg, 'I\'m not relaying that channel.')
return
users = []
for (abbreviation, otherIrc) in self.ircs.iteritems():
if abbreviation != self.abbreviations[irc]:
if abbreviation != self.abbreviations[realIrc]:
Channel = otherIrc.state.channels[channel]
usersS = ', '.join([s for s in Channel.users if s.strip()!=''])
users.append('%s: %s' % (abbreviation, usersS))
users.append('\x02%s\x02: %s' % (abbreviation, usersS))
irc.reply(msg, '; '.join(users))