From 55ce3864ba97208e277261046d4560ddc1921ff9 Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Thu, 2 Feb 2017 21:35:27 -0500 Subject: [PATCH] improve --- pipenv/cli.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pipenv/cli.py b/pipenv/cli.py index ca06cc7d..76226772 100644 --- a/pipenv/cli.py +++ b/pipenv/cli.py @@ -708,6 +708,7 @@ def cli(ctx, where=False, venv=False, rm=False, bare=False, three=False, python= click.echo(project.virtualenv_location) sys.exit(0) + # --rm was passed... elif rm: with spinner(): @@ -723,7 +724,7 @@ def cli(ctx, where=False, venv=False, rm=False, bare=False, three=False, python= click.echo(crayons.red('No virtualenv has been created for this project yet!'), err=True) sys.exit(1) - # --two / --three was passed. + # --two / --three was passed... if (python) or (three is not None): ensure_project(three=three, python=python)