[Zope3-checkins] CVS: Zope3/src/zope/app/services - factories.py:1.2
Guido van Rossum
guido@python.org
Mon, 16 Jun 2003 12:47:53 -0400
Update of /cvs-repository/Zope3/src/zope/app/services
In directory cvs.zope.org:/tmp/cvs-serv13563
Modified Files:
factories.py
Log Message:
Two of the imports here had typos. :-(
=== Zope3/src/zope/app/services/factories.py 1.1 => 1.2 ===
--- Zope3/src/zope/app/services/factories.py:1.1 Wed Jun 11 13:25:02 2003
+++ Zope3/src/zope/app/services/factories.py Mon Jun 16 12:47:51 2003
@@ -23,11 +23,11 @@
"""
def CacheConfiguration():
- from zope.app.service.cache import CacheConfiguration
+ from zope.app.services.cache import CacheConfiguration
return CacheConfiguration("", "") # name, componentPath
def ConnectionConfiguration():
- from zope.app.service.connection import ConnectionConfiguration
+ from zope.app.services.connection import ConnectionConfiguration
return ConnectionConfiguration("", "") # name, componentPath
def ServiceConfiguration():