atlassian-api / atlassian-python-api

Atlassian Python REST API wrapper
https://atlassian-python-api.readthedocs.io
Apache License 2.0
1.34k stars 661 forks source link

fix missing error msg #1378

Closed sreway closed 5 months ago

sreway commented 5 months ago

This PR fixes missing JIRA error msg, related to #1363

Error handling can also be simplified as follows:

if 400 <= response.status_code < 600:
    raise HTTPError(response.text, response=response)
else:
    response.raise_for_status()