Fix a case of regular expression use.

This commit is contained in:
Maxime Lamothe-Brassard
2023-01-26 15:44:10 -08:00
parent 1be13b3ea5
commit ff7794225b
+1 -1
View File
@@ -558,7 +558,7 @@ class LimaCharlieBackend(BaseBackend):
result = {
"op": "matches",
"path": fieldname,
"re": re.compile(value),
"re": str(value),
}
if self._postOpMapper is not None:
result = self._postOpMapper(result)