diff --git a/app/main.py b/app/main.py index 03b26e2..2d8fb49 100644 --- a/app/main.py +++ b/app/main.py @@ -186,7 +186,7 @@ def raise_for_status(response): try: msg = response.json().get('error', '') except: - pass + msg = response.text raise Exception(f'HTTPError: {response.status_code} \n Message: {msg}') if __name__ == '__main__':