Commit 0934c5f5 authored by Vincent Pelletier's avatar Vincent Pelletier

Do not use ** magic needlessly.

parent 2337bceb
...@@ -85,9 +85,9 @@ def _generateWorkflowConstructors(factory_info): ...@@ -85,9 +85,9 @@ def _generateWorkflowConstructors(factory_info):
# The form # The form
def manage_addWorkflowForm(dispatcher, REQUEST, RESPONSE): def manage_addWorkflowForm(dispatcher, REQUEST, RESPONSE):
"""Form to add a type-specific workflow to portal_workflow""" """Form to add a type-specific workflow to portal_workflow"""
kw = dict(workflow_factory_title=workflow_factory_title, return manage_addWorkflowFormDtml(None, dispatcher, REQUEST,
form_action=constructor_action_name) workflow_factory_title=workflow_factory_title,
return manage_addWorkflowFormDtml(None, dispatcher, REQUEST, **kw) form_action=constructor_action_name)
# The action of the form # The action of the form
@postonly @postonly
......
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