[Zodb-checkins] CVS: Zope/lib/python/ZEO/tests - forker.py:1.27.2.1
Lennart Regebro
lennart@torped.se
Tue, 17 Dec 2002 09:24:50 -0500
Update of /cvs-repository/Zope/lib/python/ZEO/tests
In directory cvs.zope.org:/tmp/cvs-serv29734/lib/python/ZEO/tests
Modified Files:
Tag: regebro-windows_path_fix-branch
forker.py
Log Message:
Quoted some file paths, to make things run under windows.
=== Zope/lib/python/ZEO/tests/forker.py 1.27 => 1.27.2.1 ===
--- Zope/lib/python/ZEO/tests/forker.py:1.27 Mon Dec 16 18:34:37 2002
+++ Zope/lib/python/ZEO/tests/forker.py Tue Dec 17 09:24:50 2002
@@ -72,7 +72,7 @@
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: