From a3c8bf382e5271bc5af9e2eacae22c5bdefdec38 Mon Sep 17 00:00:00 2001 From: Greg Ward Date: Sun, 26 Mar 2000 21:47:00 +0000 Subject: [PATCH] Duh, it helps if '_nt_quote_args()' actually returns the mutated list, rather than None. --- Lib/distutils/spawn.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/distutils/spawn.py b/Lib/distutils/spawn.py index 4e6f2069914..86ea3dfb501 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,