From 1e9969c94be36181fcbd1fac2c1fe41b4245fb8e Mon Sep 17 00:00:00 2001 From: mbombek Date: Wed, 21 May 2025 17:00:56 +0200 Subject: [PATCH] Redmine #3116 example comment bugfix --- structure_assignment/assign_other_structures.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/structure_assignment/assign_other_structures.py b/structure_assignment/assign_other_structures.py index 972e10d..a5b806f 100644 --- a/structure_assignment/assign_other_structures.py +++ b/structure_assignment/assign_other_structures.py @@ -171,7 +171,7 @@ def get_max_id(root): def create_xml_structure(syntactic_structure): structure_element = lxml.Element('syntactic_structure') structure_element.set('tempId', str(syntactic_structure.id)) - comment = lxml.Comment(' example: ' + syntactic_structure.example) + comment = lxml.Comment(' example: ' + syntactic_structure.example + ' ') structure_element.append(comment) structure_element.set('type', 'other') components = lxml.SubElement(structure_element, 'components')