From 7423d235c674a73c8dbb77be86af04d13273cd6f Mon Sep 17 00:00:00 2001 From: Gasper Zejn Date: Fri, 20 Apr 2018 20:29:21 +0200 Subject: [PATCH] Fix: don't use crayons for colorblind. --- pipenv/progress.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pipenv/progress.py b/pipenv/progress.py index 1a0593b1..256bec9d 100644 --- a/pipenv/progress.py +++ b/pipenv/progress.py @@ -28,8 +28,8 @@ if os.name != 'nt': BAR_EMPTY_CHAR = str(crayons.black('-')) else: if PIPENV_COLORBLIND: - BAR_FILLED_CHAR = str(crayons.white('▉', bold=True)) - BAR_EMPTY_CHAR = str(crayons.black('▉')) + BAR_FILLED_CHAR = '▉' + BAR_EMPTY_CHAR = ' ' else: BAR_FILLED_CHAR = str(crayons.green('▉', bold=True)) BAR_EMPTY_CHAR = str(crayons.black('▉'))