Fixed regex format
This commit is contained in:
parent
d0a579cf4b
commit
076cc6a63e
1 changed files with 1 additions and 1 deletions
|
@ -138,7 +138,7 @@ class Event(Message):
|
||||||
|
|
||||||
condition_tokens.pop(0)
|
condition_tokens.pop(0)
|
||||||
else:
|
else:
|
||||||
m = re.match(r'[^\\\]*\${(.+?)}', condition_token)
|
m = re.match(r'[^\\]*\${(.+?)}', condition_token)
|
||||||
if m:
|
if m:
|
||||||
argname = m.group(1)
|
argname = m.group(1)
|
||||||
if argname not in result.parsed_args:
|
if argname not in result.parsed_args:
|
||||||
|
|
Loading…
Reference in a new issue