From 6ccdf7850e4598635ea489b680f5280e8486a3cc Mon Sep 17 00:00:00 2001 From: Pratyush Desai Date: Tue, 31 Aug 2021 18:58:25 +0530 Subject: [PATCH] remove blank lines --- plugin.py | 2 -- 1 file changed, 2 deletions(-) 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)