Commit 45902c4c authored by wenjie.zheng's avatar wenjie.zheng Committed by Sebastien Robin

erp5_core: correct a typo error.

parent eb870728
...@@ -230,7 +230,7 @@ for wf in context.portal_workflow.objectValues():\n ...@@ -230,7 +230,7 @@ for wf in context.portal_workflow.objectValues():\n
message = \'\'\n message = \'\'\n
if wf_states not in (None, (), [], \'\'):\n if wf_states not in (None, (), [], \'\'):\n
for state_id in wf_states.keys():\n for state_id in wf_states.keys():\n
state = wf_state[state_id]\n state = wf_states[state_id]\n
message += checkTitle(\'/\'.join([\'portal_workflow\', wf.id, \'states\', state.id]), \'title\', state.title)\n message += checkTitle(\'/\'.join([\'portal_workflow\', wf.id, \'states\', state.id]), \'title\', state.title)\n
if message:\n if message:\n
message_list.append(message)\n message_list.append(message)\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