From fcbe4d506dc62413f643ff458dfc6c56c24ff5bf Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Sat, 30 Sep 2017 09:31:16 -0400 Subject: [PATCH] fix bug Signed-off-by: Kenneth Reitz --- pipenv/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pipenv/utils.py b/pipenv/utils.py index 03a93366..1b19eb4f 100644 --- a/pipenv/utils.py +++ b/pipenv/utils.py @@ -636,7 +636,7 @@ def convert_deps_to_pip(deps, project=None, r=True, include_index=False): dep = '' # Support for paths. - if 'path' in deps[dep]: + elif 'path' in deps[dep]: extra = '{1}{0}'.format(extra, deps[dep]['path']).strip() # Flag the file as editable if it is a local relative path