mirror of
https://github.com/maubot/maubot.git
synced 2024-10-01 01:06:10 -04:00
Merge pull request #72 from L0ric0/master
fix start and end positions of match in RegexArgument
This commit is contained in:
commit
6f37f914e9
@ -284,8 +284,8 @@ class RegexArgument(Argument):
|
||||
val = val.split(" ")[0]
|
||||
match = self.regex.match(val)
|
||||
if match:
|
||||
return (orig_val[:match.pos] + orig_val[match.endpos:],
|
||||
match.groups() or val[match.pos:match.endpos])
|
||||
return (orig_val[:match.start()] + orig_val[match.end():],
|
||||
match.groups() or val[match.start():match.end()])
|
||||
return orig_val, None
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user