From 55ef58216c97b59b14e91f4a83a08da59ae3e8c6 Mon Sep 17 00:00:00 2001 From: Brad Belyeu Date: Mon, 8 Jan 2018 16:20:51 -0600 Subject: [PATCH] :bug: Fix bad link in pipenv --envs output --- pipenv/cli.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pipenv/cli.py b/pipenv/cli.py index 8752fadd..d1528a3b 100644 --- a/pipenv/cli.py +++ b/pipenv/cli.py @@ -1653,7 +1653,7 @@ def cli( click.echo(' - {0}'.format(crayons.normal(key, bold=True))) click.echo('\nYou can learn more at:\n {0}'.format( - crayons.green('http://docs.pipenv.org/advanced.html#configuration-with-environment-variables') + crayons.green('https://docs.pipenv.org/advanced#configuration-with-environment-variables') )) sys.exit(0)