From 67e090f2d7204a66c99c4c2acb38da149fd40c9b Mon Sep 17 00:00:00 2001 From: Nate Prewitt Date: Sun, 19 Feb 2017 13:34:06 -0700 Subject: [PATCH] multiple source support --- HISTORY.txt | 2 ++ pipenv/cli.py | 7 +------ 2 files changed, 3 insertions(+), 6 deletions(-) diff --git a/HISTORY.txt b/HISTORY.txt index 4520aff2..c2c7849f 100644 --- a/HISTORY.txt +++ b/HISTORY.txt @@ -1,3 +1,5 @@ +3.5.0 + - Fully support multiple sources in Pipfile. 3.4.2 - Attempt installing from all sources in Pipfile. - Fix bug with accidental deletion of Pipfile contents. diff --git a/pipenv/cli.py b/pipenv/cli.py index e51f4deb..944a6bc9 100644 --- a/pipenv/cli.py +++ b/pipenv/cli.py @@ -566,12 +566,7 @@ def pip_install(package_name=None, r=None, allow_global=False): def pip_download(package_name): for source in project.sources: - cmd = '{0} download "{1}" -i {2} -d {3}'.format( - which_pip(), - package_name, - source['url'], - project.download_location - ) + cmd = '{0} download "{1}" -i {2} -d {3}'.format(which_pip(), package_name, source['url'], project.download_location) c = delegator.run(cmd) if c.return_code == 0: break