Skip to content

Commit

Permalink
Swap old_version and new_version in pipenv update --outdated output
Browse files Browse the repository at this point in the history
  • Loading branch information
BarrensZeppelin authored and oz123 committed Aug 23, 2024
1 parent 10f5c3d commit 7e2036a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pipenv/routines/outdated.py
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ def do_outdated(project, pypi_mirror=None, pre=False, clear=False):
if not outdated:
click.echo(click.style("All packages are up to date!", fg="green", bold=True))
sys.exit(0)
for package, new_version, old_version in outdated:
for package, old_version, new_version in outdated:
click.echo(
f"Package {package!r} out-of-date: {old_version!r} installed, {new_version!r} available."
)
Expand Down

0 comments on commit 7e2036a

Please sign in to comment.