Skip to content
Snippets Groups Projects
Commit ea2f1542 authored by Alexander Schlemmer's avatar Alexander Schlemmer
Browse files

FIX: return list containing single xml tag element

parent 0a27e7e6
No related branches found
No related tags found
2 merge requests!181Release 0.9.0,!174XML Converter
Pipeline #54431 failed
...@@ -67,7 +67,7 @@ class XMLFileConverter(SimpleFileConverter): ...@@ -67,7 +67,7 @@ class XMLFileConverter(SimpleFileConverter):
"Error during the validation of the XML file:\n" "Error during the validation of the XML file:\n"
f"{element.path}\n" + err.message) f"{element.path}\n" + err.message)
return XMLTagElement(xml.getroot()) return [XMLTagElement(xml.getroot())]
class XMLTagConverter(Converter): class XMLTagConverter(Converter):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment