From 1b56d7c709a5bbbad54dede5c625d7df9d5a8cf7 Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Sat, 9 Sep 2017 13:28:38 -0400 Subject: [PATCH] graph Signed-off-by: Kenneth Reitz --- pipenv/cli.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pipenv/cli.py b/pipenv/cli.py index a0ee9d4c..fb4388ed 100644 --- a/pipenv/cli.py +++ b/pipenv/cli.py @@ -820,6 +820,7 @@ def which_pip(allow_global=False): def format_help(help): """Formats the help string.""" + help = help.replace(' graph', str(crayons.green(' graph'))) help = help.replace(' check', str(crayons.green(' check'))) help = help.replace(' uninstall', str(crayons.yellow(' uninstall', bold=True))) help = help.replace(' install', str(crayons.yellow(' install', bold=True))) @@ -1361,7 +1362,7 @@ def check(three=None, python=False): else: click.echo(crayons.green('Passed!')) -@click.command(help=u"Displays currently–installed dependency tree information.") +@click.command(help=u"Displays currently–installed dependency graph information.") def graph(): cmd = '"{0}" {1}'.format( which('python'),