From e997e5e997ef98045442ea3152da68587c19afe5 Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Wed, 20 Sep 2017 14:20:41 -0400 Subject: [PATCH] fix help string Signed-off-by: Kenneth Reitz --- pipenv/cli.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pipenv/cli.py b/pipenv/cli.py index 0253ba61..13cdd3d8 100644 --- a/pipenv/cli.py +++ b/pipenv/cli.py @@ -1953,7 +1953,7 @@ def graph(bare=False): sys.exit(c.return_code) -@click.command(help="Updates Pipenv & pip to latest, uninstalls all packages, and re-installs package(s) in [packages] to latest compatible versions.") +@click.command(help="Uninstalls all packages, and re-installs package(s) in [packages] to latest compatible versions.") @click.option('--verbose', '-v', is_flag=True, default=False, help="Verbose mode.") @click.option('--dev', '-d', is_flag=True, default=False, help="Additionally install package(s) in [dev-packages].") @click.option('--three/--two', is_flag=True, default=None, help="Use Python 3/2 when creating virtualenv.")