[Erp5-report] r8465 - /erp5/trunk/products/ERP5/Document/Domain.py

nobody at svn.erp5.org nobody at svn.erp5.org
Tue Jul 18 11:22:25 CEST 2006


Author: yo
Date: Tue Jul 18 11:22:21 2006
New Revision: 8465

URL: http://svn.erp5.org?rev=8465&view=rev
Log:
Pass the parent parameter correctly.

Modified:
    erp5/trunk/products/ERP5/Document/Domain.py

Modified: erp5/trunk/products/ERP5/Document/Domain.py
URL: http://svn.erp5.org/erp5/trunk/products/ERP5/Document/Domain.py?rev=8465&r1=8464&r2=8465&view=diff
==============================================================================
--- erp5/trunk/products/ERP5/Document/Domain.py (original)
+++ erp5/trunk/products/ERP5/Document/Domain.py Tue Jul 18 11:22:21 2006
@@ -118,9 +118,9 @@
     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)




More information about the Erp5-report mailing list