fix Contains not working correctly

This commit is contained in:
Jens Langhammer
2019-02-21 16:21:45 +01:00
parent c941107d42
commit 183308e444
2 changed files with 19 additions and 1 deletions

View File

@ -171,7 +171,7 @@ class FieldMatcherPolicy(Policy):
MATCHES = (
(MATCH_STARTSWITH, _('Starts with')),
(MATCH_ENDSWITH, _('Ends with')),
(MATCH_ENDSWITH, _('Contains')),
(MATCH_CONTAINS, _('Contains')),
(MATCH_REGEXP, _('Regexp')),
(MATCH_EXACT, _('Exact')),
)