Skip to content

Commit

Permalink
Fix pipenv install --dev help text
Browse files Browse the repository at this point in the history
The previous help text made it seem that
`pipenv install --dev` would install ONLY
dev-packages, which is not the case.

The current description is identical to the
one used in the documentation, which is
a lot clearer.
  • Loading branch information
Gabi Nagy authored and uranusjr committed Sep 14, 2018
1 parent 51c3c8b commit 9105ac4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pipenv/cli/options.py
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ def callback(ctx, param, value):
state.installstate.dev = value
return value
return option("--dev", "-d", is_flag=True, default=False, type=click_booltype,
help="Install package(s) in [dev-packages].", callback=callback,
help="Install both develop and default packages.", callback=callback,
expose_value=False)(f)


Expand Down

0 comments on commit 9105ac4

Please sign in to comment.