summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Gates <tim.gates@iress.com>2019-11-13 08:44:55 +1100
committerOmer Katz <omer.drow@gmail.com>2019-11-12 23:44:55 +0200
commite4e5eb3927488d1ee214380bfa248ba7705366bf (patch)
tree1ef34de99d58f053946514eb57591fb903b84347
parent0c632d8f2955e34818346e96587f9124da449fe1 (diff)
downloadoauthlib-e4e5eb3927488d1ee214380bfa248ba7705366bf.tar.gz
Fix simple typo: wich -> which (#710)
-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)