Merge "Raise NotImplementedError instead of NotImplemented"

This commit is contained in:
Jenkins 2016-09-26 08:55:13 +00:00 committed by Gerrit Code Review
commit c60c8828f2
1 changed files with 1 additions and 1 deletions

View File

@ -407,7 +407,7 @@ class BaseAuthProtocol(object):
:returns: The token data
:rtype: dict
"""
raise NotImplemented()
raise NotImplementedError()
def process_response(self, response):
"""Do whatever you'd like to the response.