[Zope-CVS] CVS: Products/DBTab - Mount.py:1.3

Shane Hathaway shane@zope.com
Wed, 5 Feb 2003 14:45:45 -0500


Update of /cvs-repository/Products/DBTab
In directory cvs.zope.org:/tmp/cvs-serv19319

Modified Files:
	Mount.py 
Log Message:
Avoid storing a wrapper in the pointer back to the mount point.


=== Products/DBTab/Mount.py 1.2 => 1.3 ===
--- Products/DBTab/Mount.py:1.2	Fri Jan 31 18:34:50 2003
+++ Products/DBTab/Mount.py	Wed Feb  5 14:45:42 2003
@@ -98,7 +98,7 @@
                 # Make it possible to find the mount point object by poking
                 # an attribute into the mounted object.
                 # Also, hide from acquisition in a tuple.
-                data._v_mount_point_ = (self,)
+                data._v_mount_point_ = (aq_base(self),)
             except:
                 # Might be a read-only object.
                 pass