From 4eb286874f4e50a2c3caf97daef5a1afd7c94688 Mon Sep 17 00:00:00 2001 From: "Steven M. Gava" Date: Sun, 7 Oct 2001 11:26:48 +0000 Subject: [PATCH] merged win spawn patch --- Lib/idlelib/spawn.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/idlelib/spawn.py b/Lib/idlelib/spawn.py index 22617ed1292..be8fdf77727 100644 --- a/Lib/idlelib/spawn.py +++ b/Lib/idlelib/spawn.py @@ -42,7 +42,7 @@ def kill_zombies(): # kill_zombies function is a noop. def spawn(bin, *args): - nargs = [bin] + nargs = ['"'+bin+'"'] for arg in args: nargs.append( '"'+arg+'"' ) os.spawnv( os.P_NOWAIT, bin, nargs )