Commit 1bc7956e authored by Lennart Regebro's avatar Lennart Regebro

Merge to HEAD: The ZEO unit tests and wo_pcgi.py didn't run on Windows if the...

Merge to HEAD: The ZEO unit tests and wo_pcgi.py didn't run on Windows if the path to the python executable included a space.
parent 71b173c0
......@@ -72,7 +72,7 @@ def start_zeo_server(conf, addr=None, ro_svr=0, keep=0):
if script.endswith('.pyc'):
script = script[:-1]
# Create a list of arguments, which we'll tuplify below
args = [sys.executable, script, '-C', tmpfile]
args = ['"%s"' % sys.executable, '"%s"' % script, '-C', '"%s"' % tmpfile]
if ro_svr:
args.append('-r')
if keep:
......
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