[Zope-Checkins] CVS: Zope/lib/python/Zope/Startup - handlers.py:1.2.2.1

Fred L. Drake, Jr. fred@zope.com
Thu, 30 Jan 2003 11:40:14 -0500


Update of /cvs-repository/Zope/lib/python/Zope/Startup
In directory cvs.zope.org:/tmp/cvs-serv25223

Modified Files:
      Tag: new-install-branch
	handlers.py 
Log Message:
Use ZServer.AccessLogger instead of zLOG.AccessLogger, which will not exist
after all.


=== Zope/lib/python/Zope/Startup/handlers.py 1.2 => 1.2.2.1 ===
--- Zope/lib/python/Zope/Startup/handlers.py:1.2	Wed Jan 29 15:25:15 2003
+++ Zope/lib/python/Zope/Startup/handlers.py	Thu Jan 30 11:40:11 2003
@@ -211,7 +211,7 @@
     def __init__(self, config):
         self._config = config
         # alias some things for use in server handlers
-        from zLOG.AccessLogger import access_logger
+        from ZServer.AccessLogger import access_logger
         self._logger = access_logger
         import ZODB # :-( required to import user
         from AccessControl.User import emergency_user