Remove context parameter from DictField.from_db_value (RemovedInDjango30Warning)
This commit is contained in:
parent
5ea9fc753d
commit
90aba2ed15
1 changed files with 1 additions and 1 deletions
|
@ -17,7 +17,7 @@ class DictField(models.TextField):
|
|||
value = json.dumps(value)
|
||||
return value
|
||||
|
||||
def from_db_value(self, value, expression, connection, context):
|
||||
def from_db_value(self, value, expression, connection):
|
||||
return self.to_python(value)
|
||||
|
||||
def to_python(self, value):
|
||||
|
|
Loading…
Reference in a new issue