We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 85eea47 commit 75548d3Copy full SHA for 75548d3
atlassian/bitbucket/cloud/base.py
@@ -113,7 +113,7 @@ def raise_for_status(self, response):
113
e = j["error"]
114
error_msg = e["message"]
115
if e.get("detail"):
116
- error_msg += "\n" + e["detail"]
+ error_msg = f"{error_msg}\n{e['detail']}"
117
except Exception as e:
118
log.error(e)
119
response.raise_for_status()
0 commit comments