Commit 15ee748d authored by Sebastien Robin's avatar Sebastien Robin

getVariationCategoryItemList should support **kw


git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@2867 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent 5475fea1
......@@ -76,7 +76,7 @@ class Variated(Base):
def getVariationCategoryItemList(self, base_category_list=(), base=1,
display_id='logical_path',
display_base_category=1,
current_category=None):
current_category=None,**kw):
"""
Returns the list of possible variations
"""
......@@ -95,7 +95,7 @@ class Variated(Base):
display_base_category=display_base_category,
display_none_category=0, base=base,
current_category=current_category,
display_id=display_id).\
display_id=display_id,**kw).\
render(variation_list))
return variation_category_item_list
......
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