diff options
author | Greg Ward <gward@python.net> | 2000-03-26 21:47:00 (GMT) |
---|---|---|
committer | Greg Ward <gward@python.net> | 2000-03-26 21:47:00 (GMT) |
commit | a3c8bf382e5271bc5af9e2eacae22c5bdefdec38 (patch) | |
tree | 52e9ea0a841d9b893a3f368b5b2d03c98ec8a60e /Lib | |
parent | cdb20ba56d1c14cdf5a90df2b0cfc94d869c2e55 (diff) | |
download | cpython-a3c8bf382e5271bc5af9e2eacae22c5bdefdec38.zip cpython-a3c8bf382e5271bc5af9e2eacae22c5bdefdec38.tar.gz cpython-a3c8bf382e5271bc5af9e2eacae22c5bdefdec38.tar.bz2 |
Duh, it helps if '_nt_quote_args()' actually returns the mutated list,
rather than None.
Diffstat (limited to 'Lib')
-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 4e6f206..86ea3df 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, |