Fix variable name.
This commit is contained in:
parent
8dacc35859
commit
a9a8cdad66
|
@ -112,7 +112,7 @@ class Cobe(callbacks.Plugin):
|
||||||
strip = self.registryValue("stripPattern", channel)
|
strip = self.registryValue("stripPattern", channel)
|
||||||
text = ircutils.stripFormatting(text)
|
text = ircutils.stripFormatting(text)
|
||||||
if self.registryValue('stripRelayedNick', channel):
|
if self.registryValue('stripRelayedNick', channel):
|
||||||
text = MATCH_text_STRIPNICK.match(text).group('message')
|
text = MATCH_MESSAGE_STRIPNICK.match(text).group('message')
|
||||||
if ignore:
|
if ignore:
|
||||||
match = re.search(ignore, text)
|
match = re.search(ignore, text)
|
||||||
if match:
|
if match:
|
||||||
|
|
Loading…
Reference in New Issue