diff options
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)) |