Skip to content
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