diff options
author | Steven M. Gava <elguavas@python.net> | 2001-10-07 11:26:48 (GMT) |
---|---|---|
committer | Steven M. Gava <elguavas@python.net> | 2001-10-07 11:26:48 (GMT) |
commit | 4eb286874f4e50a2c3caf97daef5a1afd7c94688 (patch) | |
tree | 027bfca084adef394438c233611ee5be36a60385 /Lib/idlelib | |
parent | 898a365c276951ab2471afe2e24bbc910666d361 (diff) | |
download | cpython-4eb286874f4e50a2c3caf97daef5a1afd7c94688.zip cpython-4eb286874f4e50a2c3caf97daef5a1afd7c94688.tar.gz cpython-4eb286874f4e50a2c3caf97daef5a1afd7c94688.tar.bz2 |
merged win spawn patch
Diffstat (limited to 'Lib/idlelib')
-rw-r--r-- | Lib/idlelib/spawn.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/idlelib/spawn.py b/Lib/idlelib/spawn.py index 22617ed..be8fdf7 100644 --- a/Lib/idlelib/spawn.py +++ b/Lib/idlelib/spawn.py @@ -42,7 +42,7 @@ elif hasattr(os, 'spawnv'): # 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 ) |