summaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorgunnar <gunnar@g10f.de>2015-07-03 17:29:50 +0200
committergunnar <gunnar@g10f.de>2015-07-03 17:29:50 +0200
commit8748c6e0e9a66e5b153dac528b313823c152bd19 (patch)
tree537eff23cedfb0b91ef7d88b97e01ce56ee91aa7 /examples
parentb934ef52c31ec46db38393e632b42578114d6dbf (diff)
downloadoauthlib-8748c6e0e9a66e5b153dac528b313823c152bd19.tar.gz
send no state in the access token response
Diffstat (limited to 'examples')
-rw-r--r--examples/skeleton_oauth2_web_application_server.py2
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):