From 8d37ba24ed17b6531c86c42e22d178e1e50a22a2 Mon Sep 17 00:00:00 2001 From: tarek Date: Thu, 23 Jul 2009 15:24:40 +0200 Subject: fixed #24: the jython calls now works --HG-- branch : distribute extra : rebase_source : 490026cb4cb661428ab2ca71697664e4cba22909 --- tests/install_test.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'tests') diff --git a/tests/install_test.py b/tests/install_test.py index e2d86ec2..c02c04a3 100644 --- a/tests/install_test.py +++ b/tests/install_test.py @@ -22,7 +22,7 @@ f.close() # running it args = [sys.executable] + ['bootstrap.py'] if is_jython: - res = subprocess.call([sys.executable] + args) + res = subprocess.call(args) else: res = os.spawnv(os.P_WAIT, sys.executable, args) @@ -59,7 +59,7 @@ finally: try: args = [sys.executable] + [script_name] if is_jython: - res = subprocess.call([sys.executable] + args) + res = subprocess.call(args) else: res = os.spawnv(os.P_WAIT, sys.executable, args) -- cgit v1.2.3