diff options
Diffstat (limited to 'examples/skeleton_oauth2_web_application_server.py')
-rw-r--r-- | examples/skeleton_oauth2_web_application_server.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/skeleton_oauth2_web_application_server.py b/examples/skeleton_oauth2_web_application_server.py index 04ce4e4..4816cc0 100644 --- a/examples/skeleton_oauth2_web_application_server.py +++ b/examples/skeleton_oauth2_web_application_server.py @@ -64,7 +64,7 @@ class SkeletonValidator(RequestValidator): def validate_code(self, client_id, code, client, request, *args, **kwargs): # Validate the code belongs to the client. Add associated scopes, - # state and user to request.scopes, request.state and request.user. + # state and user to request.scopes and request.user. pass def confirm_redirect_uri(self, client_id, code, redirect_uri, client, *args, **kwargs): |