We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fab87f9 commit 97abd02Copy full SHA for 97abd02
src/pyop/exceptions.py
@@ -52,7 +52,7 @@ def to_error_url(self):
52
redirect_uri = self.request.get('redirect_uri')
53
response_type = self.request.get('response_type')
54
if redirect_uri and response_type and self.oauth_error:
55
- error_resp = AuthorizationErrorResponse(error=self.oauth_error, error_message=str(self),
+ error_resp = AuthorizationErrorResponse(error=self.oauth_error, error_description=str(self),
56
state=self.request.get('state'))
57
return error_resp.request(redirect_uri, should_fragment_encode(self.request))
58
0 commit comments