Signed-off-by: Dan Ryan <dan@danryan.co>
This commit is contained in:
Dan Ryan
2018-03-31 01:13:26 -04:00
parent d3c8c18af1
commit 8a67a21d61
+1 -1
View File
@@ -2203,7 +2203,7 @@ def do_run_nt(command, args):
# if you've passed something with crazy quoting...
# ...just don't. (or put it in a script!)
p = subprocess.Popen(
' '.join([command] + args), shell=True, universal_newlines=True
' '.join([command] + list(args)), shell=True, universal_newlines=True
)
p.communicate()
sys.exit(p.returncode)