From 23953779d72a4d7be822c3511515e4e35e560e8e Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Sat, 23 Sep 2017 11:20:27 -0400 Subject: [PATCH] solid progress bar Signed-off-by: Kenneth Reitz --- pipenv/progress.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pipenv/progress.py b/pipenv/progress.py index faadd624..2a11a23b 100644 --- a/pipenv/progress.py +++ b/pipenv/progress.py @@ -22,8 +22,8 @@ MILL_TEMPLATE = '%s %s %i/%i\r' DOTS_CHAR = '.' if os.name != 'nt': - BAR_FILLED_CHAR = str(crayons.green('❒', bold=True)) - BAR_EMPTY_CHAR = str(crayons.black('❒')) + BAR_FILLED_CHAR = str(crayons.green('▉', bold=True)) + BAR_EMPTY_CHAR = str(crayons.black('▉')) else: BAR_FILLED_CHAR = '=' BAR_EMPTY_CHAR = '-'