diff options
author | jonathan vanasco <jonathan@2xlp.com> | 2015-08-12 12:37:21 -0400 |
---|---|---|
committer | jonathan vanasco <jonathan@2xlp.com> | 2015-08-12 12:37:21 -0400 |
commit | 58a2a735ac329f890c5dd4a042b35ee544084db0 (patch) | |
tree | e93782efdfe6e38be6cb513a2620bbcc40a21c01 /oauthlib/common.py | |
parent | db40f9989545fc170960f692bedd3c8ba2cf0642 (diff) | |
download | oauthlib-58a2a735ac329f890c5dd4a042b35ee544084db0.tar.gz |
adding validator_log to store what the endpoint computed
Diffstat (limited to 'oauthlib/common.py')
-rw-r--r-- | oauthlib/common.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/oauthlib/common.py b/oauthlib/common.py index cfcca1c..ed2b699 100644 --- a/oauthlib/common.py +++ b/oauthlib/common.py @@ -381,6 +381,7 @@ class Request(object): self.body = encode(body) self.decoded_body = extract_params(self.body) self.oauth_params = [] + self.validator_log = {} self._params = { "access_token": None, |