From: Greg Ward Date: Sun, 26 Mar 2000 21:47:00 +0000 (+0000) Subject: Duh, it helps if '_nt_quote_args()' actually returns the mutated list, X-Git-Tag: v1.6a1~148 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=a3c8bf382e5271bc5af9e2eacae22c5bdefdec38;p=thirdparty%2FPython%2Fcpython.git Duh, it helps if '_nt_quote_args()' actually returns the mutated list, rather than None. --- diff --git a/Lib/distutils/spawn.py b/Lib/distutils/spawn.py index 4e6f20699140..86ea3dfb501a 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,