[Zope-Checkins] SVN: Zope/trunk/lib/python/Zope2/App/startup.py Moved ZApplication from ZODB to the App package.

Jim Fulton jim at zope.com
Mon May 9 09:28:14 EDT 2005


Log message for revision 30306:
  Moved ZApplication from ZODB to the App package.
  

Changed:
  U   Zope/trunk/lib/python/Zope2/App/startup.py

-=-
Modified: Zope/trunk/lib/python/Zope2/App/startup.py
===================================================================
--- Zope/trunk/lib/python/Zope2/App/startup.py	2005-05-09 13:27:00 UTC (rev 30305)
+++ Zope/trunk/lib/python/Zope2/App/startup.py	2005-05-09 13:28:14 UTC (rev 30306)
@@ -32,7 +32,7 @@
 import os
 import sys
 import ZODB
-import ZODB.ZApplication
+import App.ZApplication
 import Zope2
 import ZPublisher
 
@@ -85,7 +85,7 @@
 
     # Set up the "app" object that automagically opens
     # connections
-    app = ZODB.ZApplication.ZApplicationWrapper(
+    app = App.ZApplication.ZApplicationWrapper(
         DB, 'Application', OFS.Application.Application, (),
         Globals.VersionNameName)
     Zope2.bobo_application = app



More information about the Zope-Checkins mailing list