[Zope-Checkins] CVS: Zope3/lib/python/Zope/ComponentArchitecture - __init__.py:1.1.6.21.8.2

Steve Alexander steve@cat-box.net
Tue, 4 Jun 2002 08:32:34 -0400


Update of /cvs-repository/Zope3/lib/python/Zope/ComponentArchitecture
In directory cvs.zope.org:/tmp/cvs-serv8492/lib/python/Zope/ComponentArchitecture

Modified Files:
      Tag: Zope3InWonderland-branch
	__init__.py 
Log Message:
removal of extraneous whitespace in __init__.py

Fix infinite loop my making security management components unwrap
their context under some cicrcumstances. This may need to be revisited
later.


=== Zope3/lib/python/Zope/ComponentArchitecture/__init__.py 1.1.6.21.8.1 => 1.1.6.21.8.2 ===
     #return getServiceManager(context).getService(name)
     # XXX we shouldn't need to do this; the above should be sufficient
-    sv=getServiceManager(context).getService(name) 
+    sv=getServiceManager(context).getService(name)
     if getWrapperContainer(sv) is None:
         return removeAllProxies(sv)
     return sv