From 8837ad620d5a30acddab1efb5d53b0177f2db529 Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Sat, 2 Sep 2017 00:44:07 -0400 Subject: [PATCH] =?UTF-8?q?don't=20display=20=E2=9C=A8=F0=9F=8D=B0?= =?UTF-8?q?=E2=9C=A8=20on=20windows=20:(?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Kenneth Reitz --- pipenv/cli.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/pipenv/cli.py b/pipenv/cli.py index 13116ded..7ee32a9f 100644 --- a/pipenv/cli.py +++ b/pipenv/cli.py @@ -774,7 +774,10 @@ def format_pip_output(out, r=None): def easter_egg(package_name): if package_name in ['requests', 'maya', 'crayons', 'delegator.py', 'records', 'tablib']: - click.echo(u'P.S. You have excellent taste! ✨ 🍰 ✨') + if os.name == 'nt': + click.echo(u'P.S. You have excellent taste!') + else: + click.echo(u'P.S. You have excellent taste! ✨ 🍰 ✨') @click.group(invoke_without_command=True)