diff --git a/plugin.py b/plugin.py index cf2e05c..b6beb4f 100644 --- a/plugin.py +++ b/plugin.py @@ -359,7 +359,6 @@ class SnoParser(callbacks.Plugin): self._sendSnotice(irc, msg, repl) if 'OPER' in text and 'Client opered up' in text: - operregex = "^-OPER- Client opered up \[(.*)\]" couple = re.match(operregex, text) account = couple.group(1) @@ -369,7 +368,6 @@ class SnoParser(callbacks.Plugin): self._sendSnotice(irc, msg, repl) if 'OPER' in text and 'Client deopered' in text: - operregex = "^-OPER- Client deopered \[(.*)\]" couple = re.match(operregex, text) account = couple.group(1)