From 7bc32f3ae238b5ec28c8cb411b22e59155f99a0b Mon Sep 17 00:00:00 2001 From: Daniel Hahler Date: Fri, 24 Feb 2017 17:58:19 +0100 Subject: [PATCH] Fix help for --requirements in lock command --- pipenv/cli.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pipenv/cli.py b/pipenv/cli.py index 847f987d..400ada6e 100644 --- a/pipenv/cli.py +++ b/pipenv/cli.py @@ -846,7 +846,7 @@ def uninstall(package_name=False, more_packages=False, three=None, python=False, @click.command(help="Generates Pipfile.lock.") @click.option('--three/--two', is_flag=True, default=None, help="Use Python 3/2 when creating virtualenv.") @click.option('--python', default=False, nargs=1, help="Specify which version of Python virtualenv should use.") -@click.option('--requirements', '-r', is_flag=True, default=False, help="Just generate a requirements.txt. Only works with bare install command.") +@click.option('--requirements', '-r', is_flag=True, default=False, help="Generate output compatible with requirements.txt.") def lock(three=None, python=False, requirements=False): # Ensure that virtualenv is available. ensure_project(three=three, python=python)