Skip to content

Commit

Permalink
fix: Fix pip_path and accept multiple pip executables
Browse files Browse the repository at this point in the history
  • Loading branch information
achillesrasquinha committed May 9, 2019
1 parent 61a9ca8 commit 7ca5c5c
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/pipupgrade/commands/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,9 @@ def command(
):
cli.echo(cli_format("Checking...", cli.YELLOW))

pip_path = pip_path or [ ]
pip_path = [which(p) for p in pip_path] or _pip._PIP_EXECUTABLES

registries = [ ]

if self:
Expand Down

0 comments on commit 7ca5c5c

Please sign in to comment.