remove blank lines

This commit is contained in:
Pratyush Desai 2021-08-31 18:58:25 +05:30
parent 14e7d4e74e
commit 6ccdf7850e
Signed by: pratyush
GPG Key ID: DBA5BB7505946FAD

View File

@ -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)