Included api response in exception for failed api calls

This commit is contained in:
Jamie Quigley 2020-04-30 21:52:18 +01:00
parent 57844a32a4
commit eddf217096
1 changed files with 2 additions and 2 deletions

View File

@ -87,7 +87,7 @@ class Deezer:
time.sleep(2)
return self.api_call(method, args)
if 'error' in result_json.keys():
raise APIError()
raise APIError(result_json)
return result_json
def login(self, email, password, re_captcha_token):