Skip to content

Commit 2a18eb2

Browse files
authored
Change attribute tag check from 'NAME' to 'LABEL'
1 parent b20f09e commit 2a18eb2

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

var/xml_converter.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ def main():
6060
cardinality = ''
6161
units = ''
6262
for sub_attr in attribute:
63-
if sub_attr.tag == 'NAME':
63+
if sub_attr.tag == 'LABEL':
6464
name = sub_attr.text
6565
elif sub_attr.tag == 'MANDATORY':
6666
cardinality = sub_attr.text

0 commit comments

Comments
 (0)