Fix variable name.

This commit is contained in:
oddluck 2019-12-15 09:59:19 +00:00
parent 8dacc35859
commit a9a8cdad66
1 changed files with 1 additions and 1 deletions

View File

@ -112,7 +112,7 @@ class Cobe(callbacks.Plugin):
strip = self.registryValue("stripPattern", channel)
text = ircutils.stripFormatting(text)
if self.registryValue('stripRelayedNick', channel):
text = MATCH_text_STRIPNICK.match(text).group('message')
text = MATCH_MESSAGE_STRIPNICK.match(text).group('message')
if ignore:
match = re.search(ignore, text)
if match: