diff options
author | Greg Ward <gward@python.net> | 2000-03-26 21:47:00 +0000 |
---|---|---|
committer | Greg Ward <gward@python.net> | 2000-03-26 21:47:00 +0000 |
commit | a3c8bf382e5271bc5af9e2eacae22c5bdefdec38 (patch) | |
tree | 52e9ea0a841d9b893a3f368b5b2d03c98ec8a60e /Lib/distutils/spawn.py | |
parent | cdb20ba56d1c14cdf5a90df2b0cfc94d869c2e55 (diff) | |
download | cpython-git-a3c8bf382e5271bc5af9e2eacae22c5bdefdec38.tar.gz |
Duh, it helps if '_nt_quote_args()' actually returns the mutated list,
rather than None.
Diffstat (limited to 'Lib/distutils/spawn.py')
-rw-r--r-- | Lib/distutils/spawn.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/distutils/spawn.py b/Lib/distutils/spawn.py index 4e6f206991..86ea3dfb50 100644 --- a/Lib/distutils/spawn.py +++ b/Lib/distutils/spawn.py @@ -55,7 +55,7 @@ def _nt_quote_args (args): for i in range (len (args)): if string.find (args[i], ' ') != -1: args[i] = '"%s"' % args[i] - return + return args def _spawn_nt (cmd, search_path=1, |