Kaydet (Commit) a3c8bf38 authored tarafından Greg Ward's avatar Greg Ward

Duh, it helps if '_nt_quote_args()' actually returns the mutated list,

rather than None.
üst cdb20ba5
...@@ -55,7 +55,7 @@ def _nt_quote_args (args): ...@@ -55,7 +55,7 @@ def _nt_quote_args (args):
for i in range (len (args)): for i in range (len (args)):
if string.find (args[i], ' ') != -1: if string.find (args[i], ' ') != -1:
args[i] = '"%s"' % args[i] args[i] = '"%s"' % args[i]
return return args
def _spawn_nt (cmd, def _spawn_nt (cmd,
search_path=1, search_path=1,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment