[Zope-Checkins] SVN: Zope/branches/2.9/ - Collector #1819: fixed signature of

Andreas Jung andreas at andreas-jung.com
Tue Feb 21 04:42:50 EST 2006


Log message for revision 41721:
        - Collector #1819: fixed signature of
          MountedObject.SimpleTrailblazer._construct()
  

Changed:
  U   Zope/branches/2.9/doc/CHANGES.txt
  U   Zope/branches/2.9/lib/python/Products/ZODBMountPoint/MountedObject.py

-=-
Modified: Zope/branches/2.9/doc/CHANGES.txt
===================================================================
--- Zope/branches/2.9/doc/CHANGES.txt	2006-02-21 09:41:31 UTC (rev 41720)
+++ Zope/branches/2.9/doc/CHANGES.txt	2006-02-21 09:42:49 UTC (rev 41721)
@@ -18,6 +18,9 @@
 
     Bugs fixed
 
+      - Collector #1819: fixed signature of
+        MountedObject.SimpleTrailblazer._construct()
+
       - Collector #2019: removed validateValue() from cAccessControl (already
         removed in former Zope versions from the AccessControl Python
         implementation)

Modified: Zope/branches/2.9/lib/python/Products/ZODBMountPoint/MountedObject.py
===================================================================
--- Zope/branches/2.9/lib/python/Products/ZODBMountPoint/MountedObject.py	2006-02-21 09:41:31 UTC (rev 41720)
+++ Zope/branches/2.9/lib/python/Products/ZODBMountPoint/MountedObject.py	2006-02-21 09:42:49 UTC (rev 41721)
@@ -52,7 +52,7 @@
     def __init__(self, base):
         self.base = base
 
-    def _construct(self, context, id, final):
+    def _construct(self, context, id):
         """Creates and returns the named folder."""
         dispatcher = guarded_getattr(context, 'manage_addProduct')['OFSP']
         factory = guarded_getattr(dispatcher, 'manage_addFolder')



More information about the Zope-Checkins mailing list