summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNathanael Sensfelder <SpamShield0@MultiAgentSystems.org>2017-07-21 13:20:16 +0200
committerNathanael Sensfelder <SpamShield0@MultiAgentSystems.org>2017-07-21 13:20:16 +0200
commit008d9c6d2a5e7028dc06b8398846ff60999b8732 (patch)
tree538e628bf5934cc0aced3e4670cb96a8e7c4bb92 /instr-scripts
parent878705688b42837b615067f0a479f31614910f38 (diff)
Working on the components. Found error in scripts.
Diffstat (limited to 'instr-scripts')
-rwxr-xr-xinstr-scripts/structural_level.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/instr-scripts/structural_level.py b/instr-scripts/structural_level.py
index e645d57..4f6f8e9 100755
--- a/instr-scripts/structural_level.py
+++ b/instr-scripts/structural_level.py
@@ -234,9 +234,9 @@ def handle_component_external_ref (
inst_list_output.write(
"(is_component_of "
- + component.attrib.get("id")
+ + id_manager.get_id_from_xml(component.attrib.get("id"))
+ " "
- + linked_entity_id
+ + id_manager.get_id_from_xml(linked_entity_id)
+ ")\n"
)