Commit 10d66803 authored by Jérome Perrin's avatar Jérome Perrin

graph_editor: fix business process editor for BP without final states

parent f7d08891
......@@ -63,7 +63,9 @@ visited_business_process_set = set() # prevent infinite recurisions\n
\n
def getBusinessProcessGraph(business_process):\n
graph = dict(node=dict(start=dict(_class=\'erp5.business_process.start\',\n
name=str(translateString(\'Start\'))),),\n
name=str(translateString(\'Start\'))),\n
end=dict(_class=\'erp5.business_process.end\',\n
name=str(translateString(\'End\'))),),\n
edge=dict())\n
\n
\n
......
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