From 8a67a21d61a2383253fe0dd5e7a8d79d51d30d2d Mon Sep 17 00:00:00 2001 From: Dan Ryan Date: Sat, 31 Mar 2018 01:13:26 -0400 Subject: [PATCH] bugfix Signed-off-by: Dan Ryan --- pipenv/core.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pipenv/core.py b/pipenv/core.py index e1e488d8..9967eed0 100644 --- a/pipenv/core.py +++ b/pipenv/core.py @@ -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)