Commit 8a7a7af1 authored by Sebastien Robin's avatar Sebastien Robin

line generation json: tempary hack, sort successors to avoid bugs

parent 2b49c6a2
......@@ -94,6 +94,9 @@ def createObjects():
if source == node_id:
if predicate(source, destination, edge_data):
successor_list.append(destination)
# XXX We should probably not need to sort, but there is a bug that
# prevents Topology10 to work is this sort is not used.
successor_list.sort()
return successor_list
#define the lists
......
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