[Zope-Checkins] CVS: ZODB3/ZEO - runsvr.py:1.14

Guido van Rossum guido@python.org
Sat, 23 Nov 2002 01:42:18 -0500


Update of /cvs-repository/ZODB3/ZEO
In directory cvs.zope.org:/tmp/cvs-serv3620

Modified Files:
	runsvr.py 
Log Message:
Use ZODB.StorageConfig, not ZConfig.Storage.


=== ZODB3/ZEO/runsvr.py 1.13 => 1.14 ===
--- ZODB3/ZEO/runsvr.py:1.13	Fri Nov 22 14:32:28 2002
+++ ZODB3/ZEO/runsvr.py	Sat Nov 23 01:42:17 2002
@@ -42,7 +42,8 @@
 
 import ZConfig
 import ZConfig.Common
-import ZConfig.Storage
+
+import ZODB.StorageConfig
 
 
 class Options:
@@ -279,7 +280,7 @@
             if self.storages.has_key(name):
                 # (Actually, the parser doesn't allow this)
                 self.usage("duplicate storage name %r" % name)
-            self.storages[name] = ZConfig.Storage.getStorageInfo(section)
+            self.storages[name] = ZODB.StorageConfig.getStorageInfo(section)
 
 
 class ZEOServer: