diff --git a/oauth2client/__init__.py b/oauth2client/__init__.py index 92bc191d..0bd73cfc 100644 --- a/oauth2client/__init__.py +++ b/oauth2client/__init__.py @@ -14,7 +14,7 @@ """Client library for using OAuth2, especially with Google APIs.""" -__version__ = '4.1.3' +__version__ = '4.1.4' GOOGLE_AUTH_URI = 'https://accounts.google.com/o/oauth2/v2/auth' GOOGLE_DEVICE_URI = 'https://oauth2.googleapis.com/device/code' diff --git a/oauth2client/contrib/django_util/models.py b/oauth2client/contrib/django_util/models.py index 37cc6970..a548f7a5 100644 --- a/oauth2client/contrib/django_util/models.py +++ b/oauth2client/contrib/django_util/models.py @@ -35,7 +35,7 @@ def __init__(self, *args, **kwargs): def get_internal_type(self): return 'BinaryField' - def from_db_value(self, value, expression, connection, context): + def from_db_value(self, value, expression, connection): """Overrides ``models.Field`` method. This converts the value returned from the database to an instance of this class. """