For migrations of comments without a valid old_status, apply the 'published'

state.
This commit is contained in:
Johannes Raggam
2012-10-31 22:46:10 +01:00
parent d2ccec6efe
commit 882236cb15
2 changed files with 7 additions and 2 deletions
+3 -2
View File
@@ -121,9 +121,10 @@ class View(BrowserView):
'action': None,
'actor': None,
'comment': 'Migrated workflow state',
'review_state': old_status.get(
'review_state': old_status and old_status.get(
'review_state',
new_workflow.initial_state),
new_workflow.initial_state)
or 'published',
'time': DateTime()
}
workflow.setStatusOf('comment_review_workflow',