From 71aae614948bf8e5b98083d7cf648b53d955bace Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Thu, 26 Jan 2017 16:52:05 -0500 Subject: [PATCH] oops --- pipenv/cli.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pipenv/cli.py b/pipenv/cli.py index 2e7275e3..e73f2c28 100644 --- a/pipenv/cli.py +++ b/pipenv/cli.py @@ -386,10 +386,10 @@ def do_purge(bare=False, downloads=False, allow_global=False): # Remove setuptools and friends from installed, if present. for package_name in ['setuptools', 'pip', 'wheel', 'six']: - try: - installed.remove(package_name) - except ValueError: - pass + try: + installed.remove(package_name) + except ValueError: + pass if not bare: click.echo('Found {0} installed package(s), purging...'.format(len(installed)))