Skip to content
Snippets Groups Projects
Commit 7a21faaa authored by ale's avatar ale
Browse files

Fix syntax for regexp group access

parent 7870739a
No related branches found
No related tags found
No related merge requests found
Pipeline #42773 passed
......@@ -286,7 +286,7 @@ class Channel(asynchat.async_chat):
m = BATV_RX.match(address)
if not m:
return address
return m[1]
return m.group(1)
# Implementation of base class abstract method
def found_terminator(self):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment