Commit c092cb6f authored by Ivan Tyagov's avatar Ivan Tyagov

Return list of messages as this way result can be used with an Active Process more easily.

parent 548d1336
......@@ -62,5 +62,5 @@ def migrateEventWorkflowHistory(self):
return
workflow_tool = portal.portal_workflow
workflow_tool._jumpToStateFor(self, new_state)
return 'Event workflow migration on %s : %s -> %s' % (
self.getPath(), current_state, new_state)
return ['Event workflow migration on %s : %s -> %s' % (
self.getPath(), current_state, new_state)]
580
\ No newline at end of file
581
\ No newline at end of file
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