Skip to content

Commit

Permalink
Fix typo in warning message in http.py
Browse files Browse the repository at this point in the history
  • Loading branch information
iainrussell authored Jul 25, 2024
1 parent a9be1e2 commit f63d434
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions multiurl/http.py
Original file line number Diff line number Diff line change
Expand Up @@ -477,7 +477,7 @@ def wrapped(url, *args, **kwargs):
) as e:
r = None
LOG.warning(
"Recovering from connection error [%s], attemps %s of %s",
"Recovering from connection error [%s], attempt %s of %s",
e,
tries,
maximum_tries,
Expand All @@ -487,7 +487,7 @@ def wrapped(url, *args, **kwargs):
if not retriable(r.status_code):
return r
LOG.warning(
"Recovering from HTTP error [%s %s], attemps %s of %s",
"Recovering from HTTP error [%s %s], attempt %s of %s",
r.status_code,
r.reason,
tries,
Expand Down

0 comments on commit f63d434

Please sign in to comment.