Skip to content

[Bitbucket] Fixed error_msg concatenation error in raise_for_status #1493

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jan 23, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion atlassian/bitbucket/cloud/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,8 @@
e = j["error"]
error_msg = e["message"]
if e.get("detail"):
error_msg += "\n" + e["detail"]
# It uses interpolation instead of concatenation because of https://github.com/atlassian-api/atlassian-python-api/issues/1481
error_msg = f"{error_msg}\n{e['detail']}"

Check warning on line 117 in atlassian/bitbucket/cloud/base.py

View check run for this annotation

Codecov / codecov/patch

atlassian/bitbucket/cloud/base.py#L117

Added line #L117 was not covered by tests
except Exception as e:
log.error(e)
response.raise_for_status()
Expand Down
Loading