[Zodb-checkins] CVS: StandaloneZODB/ZEO - start.py:1.34
Jeremy Hylton
jeremy@zope.com
Fri, 14 Jun 2002 11:10:19 -0400
Update of /cvs-repository/StandaloneZODB/ZEO
In directory cvs.zope.org:/tmp/cvs-serv27803
Modified Files:
start.py
Log Message:
Remove global import statements that may not work before path munging.
XXX Should start still do path munging?
=== StandaloneZODB/ZEO/start.py 1.33 => 1.34 ===
import sys, os, getopt, string
-import StorageServer
-import asyncore
-
def directory(p, n=1):
d=p
while n:
@@ -265,7 +262,7 @@
if not unix: unix=host, port
- StorageServer.StorageServer(unix, storages)
+ ZEO.StorageServer.StorageServer(unix, storages)
try:
ppid, pid = os.getppid(), os.getpid()