[Zope3-checkins] CVS: Zope3/src/zope/app/browser/container - adding.py:1.5

Steve Alexander steve@cat-box.net
Mon, 3 Feb 2003 11:34:42 -0500


Update of /cvs-repository/Zope3/src/zope/app/browser/container
In directory cvs.zope.org:/tmp/cvs-serv27732/src/zope/app/browser/container

Modified Files:
	adding.py 
Log Message:
added a __metaclass__ = type, not because it is strictly necessary,
but because its absence made me unsure of some things when I was
tracking down an unrelated bug.
Also, added back in the changes to make the auth service work.


=== Zope3/src/zope/app/browser/container/adding.py 1.4 => 1.5 ===
--- Zope3/src/zope/app/browser/container/adding.py:1.4	Tue Dec 31 15:11:01 2002
+++ Zope3/src/zope/app/browser/container/adding.py	Mon Feb  3 11:34:40 2003
@@ -15,6 +15,8 @@
 
 $Id$
 """
+__metaclass__ = type
+
 from zope.app.interfaces.container import IAdding
 from zope.app.interfaces.container import IContainerNamesContainer
 from zope.app.interfaces.container import IZopeContainer
@@ -27,7 +29,6 @@
 from zope.proxy.context import ContextSuper, ContextMethod
 from zope.publisher.browser import BrowserView
 from zope.publisher.interfaces import IPublishTraverse
-
 
 class Adding(BrowserView):