diff --git a/oauth2client/client.py b/oauth2client/client.py index 4ec7d37..a5474d1 100644 --- a/oauth2client/client.py +++ b/oauth2client/client.py @@ -760,6 +760,8 @@ class OAuth2Credentials(Credentials): d = json.loads(content) if 'error' in d: error_msg = d['error'] + if 'error_description' in d: + error_msg += ': ' + d['error_description'] self.invalid = True if self.store: self.store.locked_put(self)