Skip to content
Snippets Groups Projects
Verified Commit 68fa4970 authored by Timm Fitschen's avatar Timm Fitschen
Browse files

FIX: missing clause for parsing the xml of subselects with lists

parent 20011d01
No related branches found
No related tags found
No related merge requests found
...@@ -3855,6 +3855,8 @@ def _parse_single_xml_element(elem): ...@@ -3855,6 +3855,8 @@ def _parse_single_xml_element(elem):
elif elem.tag.lower() == "value": elif elem.tag.lower() == "value":
if len(elem) == 1 and elem[0].tag.lower() == "emptystring": if len(elem) == 1 and elem[0].tag.lower() == "emptystring":
return "" return ""
elif len(elem) == 1 and elem[0].tag.lower() in classmap:
return _parse_single_xml_element(elem[0])
elif elem.text is None or elem.text.strip() == "": elif elem.text is None or elem.text.strip() == "":
return None return None
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment