Commit ef8294d2 authored by Romain Courteaud's avatar Romain Courteaud

Prevent 'multiple values for keyword argument' error.


git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@21514 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent 40a7ebb9
......@@ -100,7 +100,7 @@ class DefaultGetter(BaseGetter):
acquisition_object_id=self._acquisition_object_id,
is_list_type=is_list_type,
is_tales_type=is_tales_type,
**kw
checked_permission=kw.get('checked_permission', None),
)
psyco.bind(__call__)
......@@ -179,7 +179,7 @@ class ListGetter(BaseGetter):
acquisition_object_id=self._acquisition_object_id,
is_list_type=is_list_type,
is_tales_type=is_tales_type,
**kw
checked_permission=kw.get('checked_permission', None),
)
psyco.bind(__call__)
......
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