Skip to content

Commit

Permalink
Keep up with changes in geventhttpclient (#1299)
Browse files Browse the repository at this point in the history
Fixes #1279
  • Loading branch information
jelmer committed May 3, 2024
2 parents 8d124dc + 7064f5f commit 5f0497d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dulwich/contrib/swift.py
Original file line number Diff line number Diff line change
Expand Up @@ -257,7 +257,7 @@ def swift_auth_v1(self):
if ret.status_code < 200 or ret.status_code >= 300:
raise SwiftException(
"AUTH v1.0 request failed on "
+ f"{str(auth_httpclient.get_base_url()) + path} with error code {ret.status_code} ({ret.items()!s})"
+ f"{self.auth_url} with error code {ret.status_code} ({ret.items()!s})"
)
storage_url = ret["X-Storage-Url"]
token = ret["X-Auth-Token"]
Expand Down

0 comments on commit 5f0497d

Please sign in to comment.