Skip to content
Snippets Groups Projects
Commit aaa29bfd authored by Henrik tom Wörden's avatar Henrik tom Wörden
Browse files

MAINT: allow to match multiline values

parent b67e5edb
No related branches found
No related tags found
2 merge requests!71REL: RElease v0.2.0,!55F dotall
Pipeline #29318 failed
......@@ -627,7 +627,7 @@ class _AbstractDictElementConverter(Converter):
m1 = re.match(self.definition["match_name"], element.name)
if m1 is None:
return None
m2 = re.match(self.definition["match_value"], str(element.value))
m2 = re.match(self.definition["match_value"], str(element.value), re.DOTALL)
if m2 is None:
return None
values = dict()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment