From a679af22ad22d576827ded9903e02da794ebad28 Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Wed, 25 Jan 2017 00:02:55 -0500 Subject: [PATCH] easter egg --- pipenv/cli.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pipenv/cli.py b/pipenv/cli.py index cf471be8..1bb1f71f 100644 --- a/pipenv/cli.py +++ b/pipenv/cli.py @@ -474,7 +474,7 @@ def format_pip_output(out, r=None): return out def easter_egg(package_name): - if package_name in ['requests', 'maya', 'crayons', 'delegator.py']: + if package_name in ['requests', 'maya', 'crayons', 'delegator.py' 'records', 'tablib']: click.echo('P.S. You have excellent taste! ✨🍰✨') @click.group(invoke_without_command=True)