Skip to content

Commit

Permalink
Fix help text for reinstall-all --python arg. (#271)
Browse files Browse the repository at this point in the history
* Fix help text for reinstall-all --python arg.
* Change reinstall -> recreate.
  • Loading branch information
itsayellow authored Nov 5, 2019
1 parent e2a486c commit 5417f06
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/pipx/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -410,7 +410,10 @@ def _add_reinstall_all(subparsers):
p.add_argument(
"--python",
default=constants.DEFAULT_PYTHON,
help="The Python version to reinstall the package's CLI app with. Must be v3.5+.",
help=(
"The Python executable used to recreate the Virtual Environment "
"and run the associated app/apps. Must be v3.5+."
),
)
add_include_dependencies(p)
add_pip_venv_args(p)
Expand Down

0 comments on commit 5417f06

Please sign in to comment.