From e8c32c542eb4a816db44a94c8af6578f4e9cb9e3 Mon Sep 17 00:00:00 2001 From: Rapptz Date: Sun, 12 Jun 2016 20:36:07 -0400 Subject: [PATCH] Make HTTPException get the error JSON's message attribute. --- discord/errors.py | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/discord/errors.py b/discord/errors.py index 7d7bfa024..46d5e940c 100644 --- a/discord/errors.py +++ b/discord/errors.py @@ -62,13 +62,17 @@ class HTTPException(DiscordException): def __init__(self, response, message): self.response = response - self.text = message + if type(message) is dict: + self.text = message.get('message', '') + self.code = message.get('code', 0) + else: + self.text = message fmt = '{0.reason} (status code: {0.status})' - if len(message) < 100: + if len(self.text): fmt = fmt + ': {1}' - super().__init__(fmt.format(self.response, message)) + super().__init__(fmt.format(self.response, self.text)) class Forbidden(HTTPException): """Exception that's thrown for when status code 403 occurs.