Browse Source

Add the message to the exception output.

pull/42/merge
Rapptz 9 years ago
parent
commit
4a32ae444a
  1. 9
      discord/errors.py

9
discord/errors.py

@ -68,6 +68,15 @@ class HTTPException(DiscordException):
message = httplib.responses.get(response.status_code, 'HTTP error') message = httplib.responses.get(response.status_code, 'HTTP error')
message = '{0} (status code: {1.response.status_code})'.format(message, self) 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) super(HTTPException, self).__init__(message)
class InvalidArgument(ClientException): class InvalidArgument(ClientException):

Loading…
Cancel
Save