Fix negate on FieldMatcherPolicy

This commit is contained in:
Jens Langhammer
2019-03-03 17:21:58 +01:00
parent 7bd3c4bccf
commit 791e88ffc1
2 changed files with 2 additions and 2 deletions

View File

@ -284,8 +284,7 @@ class FieldMatcherPolicy(Policy):
if self.match_action == FieldMatcherPolicy.MATCH_REGEXP:
pattern = re.compile(self.value)
passes = bool(pattern.match(user_field_value))
if self.negate:
passes = not passes
LOGGER.debug("User got '%r'", passes)
return passes