Remove redundant character escape in RE
This commit is contained in:
parent
85a82a4770
commit
c6c2361310
@ -420,7 +420,7 @@ class OOMAnalyser(object):
|
||||
if isinstance(value, int):
|
||||
return value
|
||||
|
||||
tokenlist = iter(re.split('([\|&])', value))
|
||||
tokenlist = iter(re.split('([|&])', value))
|
||||
operator = None
|
||||
negate_rvalue = False
|
||||
lvalue = 0
|
||||
|
Loading…
Reference in New Issue
Block a user