From 40003ecf544ce156daafdc08670aa8d2d8a7434e Mon Sep 17 00:00:00 2001 From: Nate Prewitt Date: Fri, 27 Jan 2017 11:07:32 -0700 Subject: [PATCH] stop once we've got it --- pipenv/cli.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pipenv/cli.py b/pipenv/cli.py index ad8069e8..1bbbace2 100644 --- a/pipenv/cli.py +++ b/pipenv/cli.py @@ -262,6 +262,7 @@ def parse_install_output(output): if r is None: continue names.append((r['file'].replace('./.venv/downloads/',''), name)) + break return names @@ -313,6 +314,7 @@ def get_downloads_info(names_map): for fname in os.listdir(project.download_location): # Get display name from filename mapping + click.echo(names_map[fname]) name = list(convert_deps_from_pip(names_map[fname]))[0] # Get the version info from the filenames. version = parse_download_fname(fname)