From 4a32ae444a6d71f752a0ee92ab23fe34123c0108 Mon Sep 17 00:00:00 2001 From: Rapptz Date: Fri, 27 Nov 2015 03:34:27 -0500 Subject: [PATCH] Add the message to the exception output. --- discord/errors.py | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/discord/errors.py b/discord/errors.py index a84507771..d105d4045 100644 --- a/discord/errors.py +++ b/discord/errors.py @@ -68,6 +68,15 @@ class HTTPException(DiscordException): message = httplib.responses.get(response.status_code, 'HTTP error') message = '{0} (status code: {1.response.status_code})'.format(message, self) + + try: + data = response.json() + response_error = data['message'] + if response_error: + message = '{}: {}'.format(message, response_error) + except: + pass + super(HTTPException, self).__init__(message) class InvalidArgument(ClientException):