diff options
author | tarek <none@none> | 2009-07-23 15:24:40 +0200 |
---|---|---|
committer | tarek <none@none> | 2009-07-23 15:24:40 +0200 |
commit | 8d37ba24ed17b6531c86c42e22d178e1e50a22a2 (patch) | |
tree | b3cf970610fa03c40a1cb60722d17b9190dc4b48 /bootstrap.py | |
parent | 9cca2a8d2e6c815a7a0ae31a14dc8d879f78b2e9 (diff) | |
download | external_python_setuptools-8d37ba24ed17b6531c86c42e22d178e1e50a22a2.tar.gz external_python_setuptools-8d37ba24ed17b6531c86c42e22d178e1e50a22a2.tar.bz2 external_python_setuptools-8d37ba24ed17b6531c86c42e22d178e1e50a22a2.zip |
fixed #24: the jython calls now works
--HG--
branch : distribute
extra : rebase_source : 490026cb4cb661428ab2ca71697664e4cba22909
Diffstat (limited to 'bootstrap.py')
-rw-r--r-- | bootstrap.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bootstrap.py b/bootstrap.py index a861c584..e8a058a6 100644 --- a/bootstrap.py +++ b/bootstrap.py @@ -273,7 +273,7 @@ def _relaunch(): # we have to relaunch the process args = [sys.executable] + sys.argv if is_jython: - sys.exit(subprocess.Popen([sys.executable] + args).wait()) + sys.exit(subprocess.call(args)) else: sys.exit(os.spawnv(os.P_WAIT, sys.executable, args)) |