Commit ebdb0afa authored by wenjie.zheng's avatar wenjie.zheng Committed by Sebastien Robin

Workflow.py: fix a type of XML structure in showAsXML.

parent 12531041
...@@ -789,7 +789,7 @@ class Workflow(IdAsReferenceMixin("workflow_", "prefix"), XMLObject): ...@@ -789,7 +789,7 @@ class Workflow(IdAsReferenceMixin("workflow_", "prefix"), XMLObject):
destination_list = [] destination_list = []
for tr_id in property_value: for tr_id in property_value:
destination_list.append(self._getOb(tr_id).getReference()) destination_list.append(self._getOb(tr_id).getReference())
property_value = destination_list property_value = tuple(destination_list)
property_type = 'multiple selection' property_type = 'multiple selection'
else: else:
property_value = sdef.getProperty(property_id) property_value = sdef.getProperty(property_id)
......
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