[Zope3-checkins] CVS: Zope3/lib/python/Zope/App/OFS/Services/ServiceManager/Views/Browser - ComponentAdding.py:1.2

Steve Alexander steve@cat-box.net
Mon, 18 Nov 2002 08:28:02 -0500


Update of /cvs-repository/Zope3/lib/python/Zope/App/OFS/Services/ServiceManager/Views/Browser
In directory cvs.zope.org:/tmp/cvs-serv32362/lib/python/Zope/App/OFS/Services/ServiceManager/Views/Browser

Modified Files:
	ComponentAdding.py 
Log Message:
The original __implements__ was missing the IBrowserPublisher from
Adding.py, which would most likely stop the special side-effect of
setting the contentName attribute.


=== Zope3/lib/python/Zope/App/OFS/Services/ServiceManager/Views/Browser/ComponentAdding.py 1.1 => 1.2 ===
--- Zope3/lib/python/Zope/App/OFS/Services/ServiceManager/Views/Browser/ComponentAdding.py:1.1	Thu Jul 11 14:21:32 2002
+++ Zope3/lib/python/Zope/App/OFS/Services/ServiceManager/Views/Browser/ComponentAdding.py	Mon Nov 18 08:28:02 2002
@@ -21,5 +21,5 @@
 
 class ServiceAdding(Adding):
     
-    __implements__ = IServiceAdding
+    __implements__ = Adding.__implements__, IServiceAdding