[Zope3-checkins] CVS: Zope3/src/zope/tal - setpath.py:1.3
Fred L. Drake, Jr.
fred at zope.com
Fri Feb 20 17:02:37 EST 2004
Update of /cvs-repository/Zope3/src/zope/tal
In directory cvs.zope.org:/tmp/cvs-serv15099/src/zope/tal
Modified Files:
setpath.py
Log Message:
remove use of the ZODB 4 "zodb" facade package; use ZODB 3 directly
=== Zope3/src/zope/tal/setpath.py 1.2 => 1.3 ===
--- Zope3/src/zope/tal/setpath.py:1.2 Wed Dec 25 09:15:29 2002
+++ Zope3/src/zope/tal/setpath.py Fri Feb 20 17:02:36 2004
@@ -28,7 +28,7 @@
except IOError:
try:
# If we can import ZODB, our sys.path is set up well enough already
- import zodb
+ import ZODB
except ImportError:
raise IOError("Can't find ZODB package. Please edit %s to point to "
"your Zope's lib/python directory" % path)
@@ -41,4 +41,4 @@
if dir not in sys.path:
sys.path.append(dir)
# Must import this first to initialize Persistence properly
- import zodb
+ import ZODB
More information about the Zope3-Checkins
mailing list