Commit 94a42b47 authored by Łukasz Nowak's avatar Łukasz Nowak

Fix typo.

parent 275e4b38
...@@ -676,7 +676,8 @@ class SimulationMovement(PropertyRecordableMixin, Movement, ExplainableMixin): ...@@ -676,7 +676,8 @@ class SimulationMovement(PropertyRecordableMixin, Movement, ExplainableMixin):
raise ValueError('Simulation Movement %s has no Business Link ' raise ValueError('Simulation Movement %s has no Business Link '
'related and no Business Link from composed document matches'% 'related and no Business Link from composed document matches'%
current.getPath()) current.getPath())
causality_dict[current_business_link_value.getRelativeUrl()] = current current_business_link = current_business_link_value.getRelativeUrl()
causality_dict[current_business_link] = current
current = current.getParentValue().getParentValue() current = current.getParentValue().getParentValue()
remaining_path_set = set() remaining_path_set = set()
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment