From f79a71e251d744d6dd6916115bb94ce6dcd1bfc6 Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Tue, 12 Sep 2017 22:35:15 -0400 Subject: [PATCH] this is why we can't have nice things --- HISTORY.txt | 2 ++ pipenv/__version__.py | 2 +- pipenv/cli.py | 2 +- 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/HISTORY.txt b/HISTORY.txt index 573344b3..52255fe6 100644 --- a/HISTORY.txt +++ b/HISTORY.txt @@ -1,3 +1,5 @@ +6.2.9: + - Bug fix. 6.2.8: - Bug fix. 6.2.7: diff --git a/pipenv/__version__.py b/pipenv/__version__.py index 42225181..b1a5c47e 100644 --- a/pipenv/__version__.py +++ b/pipenv/__version__.py @@ -3,4 +3,4 @@ # //___/ / / / //___/ / // // / / || / / # // / / // ((____ // / / ||/ / -__version__ = '6.2.8' +__version__ = '6.2.9' diff --git a/pipenv/cli.py b/pipenv/cli.py index de2cb6c3..0a13b074 100644 --- a/pipenv/cli.py +++ b/pipenv/cli.py @@ -877,7 +877,7 @@ def format_help(help): """Formats the help string.""" help = help.replace('Options:', str(crayons.white('Options:', bold=True))) - help = help.replace('Usage: pipenv', str('Usage: {0}'.format(crayons.white('☤ pipenv', bold=True)))) + help = help.replace('Usage: pipenv', str('Usage: {0}'.format(crayons.white('pipenv', bold=True)))) help = help.replace(' graph', str(crayons.green(' graph'))) help = help.replace(' check', str(crayons.green(' check')))