From 78febc911af3f704fabacc4612877f009ae51eda Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Mon, 11 Sep 2017 22:49:48 -0400 Subject: [PATCH] emojis! Signed-off-by: Kenneth Reitz --- pipenv/cli.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pipenv/cli.py b/pipenv/cli.py index bfd13743..98bfa904 100644 --- a/pipenv/cli.py +++ b/pipenv/cli.py @@ -376,7 +376,7 @@ def do_install_dependencies( sys.exit(0) # pip install: - for dep, ignore_hash in progress.bar(deps_list): + for dep, ignore_hash in progress.bar(deps_list, label='🌻 ' if os.name != 'nt' else ''): # Install the module. c = pip_install( @@ -406,7 +406,7 @@ def do_install_dependencies( click.echo(crayons.yellow(u'Installing initially–failed dependencies…')) - for dep, ignore_hash in progress.bar(failed_deps_list): + for dep, ignore_hash in progress.bar(failed_deps_list, label='🌵 ' if os.name != 'nt' else ''): # Install the module. c = pip_install( dep,