From 824f822bc793ff065d636d9db2694a862ce2084e Mon Sep 17 00:00:00 2001 From: Dan Ryan Date: Sun, 27 May 2018 14:34:21 -0400 Subject: [PATCH] Don't shell escape posix-style paths Signed-off-by: Dan Ryan --- pipenv/utils.py | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/pipenv/utils.py b/pipenv/utils.py index ea4e013635..a8664ddcdd 100644 --- a/pipenv/utils.py +++ b/pipenv/utils.py @@ -1187,10 +1187,8 @@ def get_vcs_deps( if installed.is_vcs: installed.req.ref = locked_rev lockfiles.append({pipfile_name: installed.pipfile_entry[1]}) - pipfile_srcdir = escape_grouped_arguments((src_dir / pipfile_name).as_posix()) - lockfile_srcdir = escape_grouped_arguments( - (src_dir / installed.normalized_name).as_posix() - ) + pipfile_srcdir = (src_dir / pipfile_name).as_posix() + lockfile_srcdir = (src_dir / installed.normalized_name).as_posix() lines.append(line) if os.path.exists(pipfile_srcdir): lockfiles.extend(