Commit de68d72b authored by Łukasz Nowak's avatar Łukasz Nowak

- need to convert to list, as methods are returning tuples which cannot be concatenated


git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@26735 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent 1c738f24
......@@ -154,8 +154,8 @@ class BusinessPath(Path):
# Dynamic context based categories
def _getDynamicCategoryList(self, context):
return self._getDynamicSourceCategoryList(context) \
+ self._getDynamicDestinationCategoryList(context)
return list(self._getDynamicSourceCategoryList(context)) \
+ list(self._getDynamicDestinationCategoryList(context))
def _getDynamicSourceCategoryList(self, context):
method_id = self.getSourceMethodId()
......
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