Commit ca46d3b1 authored by Jean-Paul Smets's avatar Jean-Paul Smets

Use " instead of '

git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@15994 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent 7659b31c
...@@ -125,11 +125,11 @@ class InteractionDefinition (SimpleItem): ...@@ -125,11 +125,11 @@ class InteractionDefinition (SimpleItem):
actbox_category='workflow', actbox_category='workflow',
method_id=(), method_id=(),
props=None, REQUEST=None, description=''): props=None, REQUEST=None, description=''):
''' """
Update transition properties Update transition properties
XXX - then make sure that method_id is WorkflowMethod for portal_type_filter XXX - then make sure that method_id is WorkflowMethod for portal_type_filter
XXX - this will likely require dynamic XXX - this will likely require dynamic
''' """
if type(method_id) is type(''): if type(method_id) is type(''):
self.method_id = method_id.split() self.method_id = method_id.split()
else: else:
......
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