Commit d8a8df0a authored by Yoshinori Okuji's avatar Yoshinori Okuji

Pass the parent parameter correctly.

git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@8465 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent 597d0722
......@@ -118,9 +118,9 @@ class Domain(Predicate, MetaNode, MetaResource):
domain = domain.__of__(self)
return domain
def getChildDomainValueList(self, *args,**kw):
def getChildDomainValueList(self, *args, **kw):
"""
Return child domain objects already present or me may generate
dynamically childs.
"""
return self.portal_domains.getChildDomainValueList(*args,**kw)
return self.portal_domains.getChildDomainValueList(self, *args, **kw)
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