summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJonathan Huot <JonathanHuot@users.noreply.github.com>2019-11-13 14:08:41 +0100
committerGitHub <noreply@github.com>2019-11-13 14:08:41 +0100
commit4017474154e6e15cd8cfe197d3de01ec00c2e40c (patch)
tree4e0e5e144ea6c63903e5da40223fed6db4c0e68c
parent27110cdf609f4d3b16a24a4a4ddda467127db737 (diff)
parente4e5eb3927488d1ee214380bfa248ba7705366bf (diff)
downloadoauthlib-4017474154e6e15cd8cfe197d3de01ec00c2e40c.tar.gz
Merge branch 'master' into patch-1
-rw-r--r--oauthlib/openid/connect/core/grant_types/dispatchers.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/oauthlib/openid/connect/core/grant_types/dispatchers.py b/oauthlib/openid/connect/core/grant_types/dispatchers.py
index 541467a..4d880b7 100644
--- a/oauthlib/openid/connect/core/grant_types/dispatchers.py
+++ b/oauthlib/openid/connect/core/grant_types/dispatchers.py
@@ -75,7 +75,7 @@ class AuthorizationTokenGrantDispatcher(Dispatcher):
code = parameters.get('code', None)
redirect_uri = parameters.get('redirect_uri', None)
- # If code is not pressent fallback to `default_grant` wich will
+ # If code is not pressent fallback to `default_grant` which will
# raise an error for the missing `code` in `create_token_response` step.
if code:
scopes = self.request_validator.get_authorization_code_scopes(client_id, code, redirect_uri, request)