[Zope-Checkins] CVS: Zope3/lib/python/Zope/ComponentArchitecture - Service.py:1.1.6.8

Steve Alexander steve@cat-box.net
Mon, 4 Mar 2002 14:33:52 -0500


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

Modified Files:
      Tag: Zope-3x-branch
	Service.py 
Log Message:
added missing "self" arg in ServiceManager.getServiceDefinitions


=== Zope3/lib/python/Zope/ComponentArchitecture/Service.py 1.1.6.7 => 1.1.6.8 ===
         self.__defs[name] = interface
 
-    def getServiceDefinitions():
-	"""see IServiceService Interface"""
-	return self.__defs.items()
+    def getServiceDefinitions(self):
+        """see IServiceService Interface"""
+        return self.__defs.items()
 
     def provideService(self, name, component):
         """provide a service implementation"""