summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGrey Li <withlihui@gmail.com>2018-05-27 03:38:05 +0800
committerPieter Ennes <pieter@ennes.nl>2018-05-26 20:38:05 +0100
commitfedc1d1b740a0407ec59152750bbbd9dc736b51d (patch)
tree6c0aff1dba8e979d8bc236ec18af6d63c08830bb
parent27702f40753f88fc5bbf15128dac15758d4bc29a (diff)
downloadoauthlib-fedc1d1b740a0407ec59152750bbbd9dc736b51d.tar.gz
Add missing NotImplementedError (#499)
-rw-r--r--oauthlib/oauth2/rfc6749/clients/base.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/oauthlib/oauth2/rfc6749/clients/base.py b/oauthlib/oauth2/rfc6749/clients/base.py
index 07ef894..406832d 100644
--- a/oauthlib/oauth2/rfc6749/clients/base.py
+++ b/oauthlib/oauth2/rfc6749/clients/base.py
@@ -143,6 +143,7 @@ class Client(object):
def parse_request_uri_response(self, *args, **kwargs):
"""Abstract method used to parse redirection responses."""
+ raise NotImplementedError("Must be implemented by inheriting classes.")
def add_token(self, uri, http_method='GET', body=None, headers=None,
token_placement=None, **kwargs):