Security update; Increase rec Django version to 2.2.4

This commit is contained in:
Griatch 2019-08-09 18:03:02 +02:00
parent f64a44ce35
commit 781e8310f5
6 changed files with 21 additions and 24 deletions

View file

@ -358,6 +358,10 @@ class TypedObject(SharedMemoryModel):
except AttributeError:
return False
def __hash__(self):
# this is required to maintain hashing
return super().__hash__()
def __str__(self):
return smart_str("%s" % self.db_key)