Commit e8a8a44f authored by Vincent Pelletier's avatar Vincent Pelletier

Test merge.

Coding style: new line after colon.


git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@16242 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent 6e09f180
......@@ -2875,16 +2875,16 @@ class Base( CopyContainer,
portal_workflow = getToolByName(self, 'portal_workflow')
wf = portal_workflow.getWorkflowById('edit_workflow')
wf_list = list(portal_workflow.getWorkflowsFor(self))
if wf is not None: wf_list = [wf] + wf_list
if wf is not None:
wf_list = [wf] + wf_list
max_date = None
for wf in wf_list:
history = wf.getInfoFor(self, 'history', None)
if history is not None:
if len(history):
date = history[-1].get('time', None)
# Then get the last line of edit_workflow
if date > max_date:
max_date = date
if history is not None and len(history):
date = history[-1].get('time', None)
# Then get the last line of edit_workflow
if date > max_date:
max_date = date
return max_date
# Layout management
......
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