Commit 5b1cc377 authored by Jeremy Hylton's avatar Jeremy Hylton

Remove global import statements that may not work before path munging.

XXX Should start still do path munging?
parent 4b46036f
......@@ -14,13 +14,10 @@
"""Start the server storage.
"""
__version__ = "$Revision: 1.33 $"[11:-2]
__version__ = "$Revision: 1.34 $"[11:-2]
import sys, os, getopt, string
import StorageServer
import asyncore
def directory(p, n=1):
d=p
while n:
......@@ -265,7 +262,7 @@ def main(argv):
if not unix: unix=host, port
StorageServer.StorageServer(unix, storages)
ZEO.StorageServer.StorageServer(unix, storages)
try:
ppid, pid = os.getppid(), os.getpid()
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment