Commit fad7256e authored by Jim Fulton's avatar Jim Fulton

Added check for thread support.

parent b7478e8b
......@@ -87,6 +87,14 @@
"""
import os, sys, string
try: import thread
except:
print "*******************************************"
print "Error: "
print "Zope requires Python thread support!"
print "*******************************************"
sys.exit(1)
cd=os.chdir
def do(command, picky=1):
......
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