summaryrefslogtreecommitdiff
path: root/oauthlib/oauth2/rfc6749/grant_types/authorization_code.py
diff options
context:
space:
mode:
authorJoel Stevenson <jstevenson@bepress.com>2016-04-19 17:53:38 -0700
committerJoel Stevenson <jstevenson@bepress.com>2016-04-19 17:53:38 -0700
commit872b66c0057ae72c3be202ded54f3a3f5122f37e (patch)
treecc06d4bf3fa293454aaef156900262a74ee7c9a7 /oauthlib/oauth2/rfc6749/grant_types/authorization_code.py
parentfde41caa25203f456a4650ae1e5501725622cbb7 (diff)
downloadoauthlib-872b66c0057ae72c3be202ded54f3a3f5122f37e.tar.gz
Fixup implicit flow authorization response and test
Diffstat (limited to 'oauthlib/oauth2/rfc6749/grant_types/authorization_code.py')
-rw-r--r--oauthlib/oauth2/rfc6749/grant_types/authorization_code.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/oauthlib/oauth2/rfc6749/grant_types/authorization_code.py b/oauthlib/oauth2/rfc6749/grant_types/authorization_code.py
index c1826d0..d35b55a 100644
--- a/oauthlib/oauth2/rfc6749/grant_types/authorization_code.py
+++ b/oauthlib/oauth2/rfc6749/grant_types/authorization_code.py
@@ -100,7 +100,7 @@ class AuthorizationCodeGrant(GrantTypeBase):
def __init__(self, request_validator=None, refresh_token=True):
self.request_validator = request_validator or RequestValidator()
self.refresh_token = refresh_token
- # NEW-FOR-OPENID
+
self._authorization_validators = []
self._token_validators = []
self._code_modifiers = []