Fixed stupid bug in outFilter (forgot *not*)

This commit is contained in:
Jeremy Fincher 2003-03-27 08:37:17 +00:00
parent 34a47130e1
commit 256e2e0a5d

View File

@ -163,7 +163,7 @@ class Relay(privmsgs.CapabilityCheckingPrivmsg):
if msg.command == 'PRIVMSG':
abbreviations = self.abbreviations.values()
r = re.compile(r'<[^@]+@(?:%s)>' % '|'.join(abbreviations))
if r.match(msg.args[1]):
if not r.match(msg.args[1]):
channel = msg.args[0]
abbreviation = self.abbreviations[irc]
s = self._formatPrivmsg(irc.nick, abbreviation, msg)