diff options
author | Pieter Ennes <pieter@authentiq.com> | 2017-02-13 23:08:38 +0000 |
---|---|---|
committer | Pieter Ennes <pieter@authentiq.com> | 2017-04-02 14:35:58 +0100 |
commit | 652560b2a4dff97607d04a204d119af17ecd50e9 (patch) | |
tree | 7a3b81aa6cf3707969668ecd1ddcf621d880366e /oauthlib/oauth2/rfc6749/endpoints | |
parent | 70262c730450b28e07d3543c1a6d48c13cd7ea1e (diff) | |
download | oauthlib-652560b2a4dff97607d04a204d119af17ecd50e9.tar.gz |
Add two error codes from RFC 6750.
Diffstat (limited to 'oauthlib/oauth2/rfc6749/endpoints')
-rw-r--r-- | oauthlib/oauth2/rfc6749/endpoints/pre_configured.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/oauthlib/oauth2/rfc6749/endpoints/pre_configured.py b/oauthlib/oauth2/rfc6749/endpoints/pre_configured.py index 7463484..9e7667c 100644 --- a/oauthlib/oauth2/rfc6749/endpoints/pre_configured.py +++ b/oauthlib/oauth2/rfc6749/endpoints/pre_configured.py @@ -79,7 +79,7 @@ class Server(AuthorizationEndpoint, TokenEndpoint, ResourceEndpoint, 'password': password_grant, 'client_credentials': credentials_grant, 'refresh_token': refresh_grant, - 'openid' : openid_connect_auth + 'openid': openid_connect_auth }, default_token_type=bearer) ResourceEndpoint.__init__(self, default_token='Bearer', |