From 47b5dedffd7a8565ee28dafb66b50c13b080b1d1 Mon Sep 17 00:00:00 2001 From: Nate Prewitt Date: Wed, 1 Mar 2017 08:49:15 -0700 Subject: [PATCH] monochromatic exception message --- pipenv/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pipenv/utils.py b/pipenv/utils.py index e34aed47..0ccf8c4e 100644 --- a/pipenv/utils.py +++ b/pipenv/utils.py @@ -187,7 +187,7 @@ def proper_case(package_name): # Hit the simple API. r = requests.get('https://pypi.org/simple/{0}'.format(package_name)) if not r.ok: - raise IOError('Unable to find package {0} in PyPI repository.'.format(crayons.green(package_name))) + raise IOError('Unable to find package {0} in PyPI repository.'.format(package_name)) # Parse the HTML. parser = SimpleHTMLParser()