Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: pypa/pip
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 7e165af141d8a5680905cb606fdf3a17dd32abc9
Choose a base ref
..
head repository: pypa/pip
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: c146e817ded5d125777811ff73ab7aa762641597
Choose a head ref
Showing with 1 addition and 1 deletion.
  1. +1 −1 src/pip/_internal/exceptions.py
2 changes: 1 addition & 1 deletion src/pip/_internal/exceptions.py
Original file line number Diff line number Diff line change
@@ -824,7 +824,7 @@ def __init__(

download_status = f"{format_size(received)}/{format_size(expected)}"
if retries:
retry_status = f"after {retries} retries "
retry_status = f"after {retries} attempts "
hint = "Use --resume-retries to configure resume attempt limit."
else:
retry_status = ""