Skip to content

Commit 7a3a5b0

Browse files
committed
[tools/xmlreader] Proper 'values' handling on load
1 parent b0a0b25 commit 7a3a5b0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

odml/tools/xmlparser.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -293,7 +293,7 @@ def parse_tag(self, root, fmt, insert_children=True):
293293

294294
# Special handling of values;
295295
curr_text = node.text.strip() if node.text else None
296-
if tag == "value" and curr_text:
296+
if tag == "values" and curr_text:
297297
content = from_csv(node.text)
298298
arguments[tag] = content
299299
else:

0 commit comments

Comments
 (0)