Skip to content

Commit aec6608

Browse files
committed
Version release with Confluence adjustments
1 parent fa91467 commit aec6608

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

atlassian/VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
4.0.7
1+
4.0.8

atlassian/rest_client.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -995,9 +995,7 @@ def raise_for_status(self, response: Response) -> None:
995995
elif isinstance(errors, dict) and "message" in errors:
996996
error_msg_list.append(errors.get("message", ""))
997997
elif isinstance(errors, list):
998-
error_msg_list.extend(
999-
[v.get("message", "") if isinstance(v, dict) else v for v in errors]
1000-
)
998+
error_msg_list.extend([v.get("message", "") if isinstance(v, dict) else v for v in errors])
1001999
error_msg = "\n".join(error_msg_list) if error_msg_list else "Unknown error"
10021000
except Exception as e:
10031001
log.error(e)

0 commit comments

Comments
 (0)