From b6db3a45b3e68b61a20e3d887461b31e7d2e77ac Mon Sep 17 00:00:00 2001 From: QasimK Date: Fri, 16 Mar 2018 13:49:39 +0000 Subject: [PATCH] Allow Markdown formatting to come back GitHub does not respect the Markdown without an additional line break. --- pipenv/help.py | 1 + 1 file changed, 1 insertion(+) diff --git a/pipenv/help.py b/pipenv/help.py index c354aa6c..7d219714 100644 --- a/pipenv/help.py +++ b/pipenv/help.py @@ -12,6 +12,7 @@ from .pep508checker import lookup def main(): print('
$ python -m pipenv.help output') + print('') print('Pipenv version: `{0!r}`'.format(__version__)) print('') print('Pipenv location: `{0!r}`'.format(os.path.dirname(pipenv.__file__)))