From c8db3a501b57026693b4a244c024fde9512fbfa5 Mon Sep 17 00:00:00 2001 From: Dan Ryan Date: Wed, 4 Oct 2017 23:41:24 -0400 Subject: [PATCH] Remove URL reformatter --- pipenv/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pipenv/utils.py b/pipenv/utils.py index b759ce0b..94b6fdec 100644 --- a/pipenv/utils.py +++ b/pipenv/utils.py @@ -532,7 +532,7 @@ def convert_deps_from_pip(dep): # Set up this requirement as a proper VCS requirement if it was not if not req.vcs and req.path.startswith(VCS_LIST): req.vcs = [vcs for vcs in VCS_LIST if req.path.startswith(vcs)][0] - req.uri = '{0}'.format(req.path) #.replace(':', '/', 1).replace('@', '://', 1) + req.uri = '{0}'.format(req.path) req.path = None # Crop off the git+, etc part.