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)