Commit d3f0c9e5 authored by Łukasz Nowak's avatar Łukasz Nowak

- fix typo


git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@45127 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent 07f480ed
......@@ -2060,7 +2060,7 @@ class PortalTypeWorkflowChainTemplateItem(BaseTemplateItem):
old_chain_workflow_id_set.add(wf_id[1:])
# then either '+' or nothing, add wf id to the list
else:
wf_id.lstrip('+')
wf_id = wf_id.lstrip('+')
old_chain_workflow_id_set.add(wf_id)
# create the new chain
chain_dict[chain_key] = list(old_chain_workflow_id_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