mirror of
https://github.com/Mikaela/Limnoria.git
synced 2024-11-26 20:59:27 +01:00
Changed idiom in doPart to be more like others
This commit is contained in:
parent
c62a65e1ec
commit
5db1dbd595
@ -157,11 +157,10 @@ class Relay(privmsgs.CapabilityCheckingPrivmsg):
|
||||
abbreviation = self.abbreviations[irc]
|
||||
s = '%s has left on %s' % (msg.nick, abbreviation)
|
||||
for otherIrc in self.ircs.itervalues():
|
||||
if otherIrc == irc:
|
||||
continue
|
||||
for channel in channels:
|
||||
if channel in otherIrc.state.channels:
|
||||
otherIrc.queueMsg(ircmsgs.privmsg(channel, s))
|
||||
if otherIrc != irc:
|
||||
for channel in channels:
|
||||
if channel in otherIrc.state.channels:
|
||||
otherIrc.queueMsg(ircmsgs.privmsg(channel, s))
|
||||
|
||||
def outFilter(self, irc, msg):
|
||||
if not isinstance(irc, irclib.Irc):
|
||||
|
Loading…
Reference in New Issue
Block a user