We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 33637e3 commit e7424f0Copy full SHA for e7424f0
django/core/serializers/json.py
@@ -48,4 +48,4 @@ def default(self, o):
48
elif isinstance(o, datetime.time):
49
return o.strftime(self.TIME_FORMAT)
50
else:
51
- return super(self, DateTimeAwareJSONEncoder).default(o)
+ return super(DateTimeAwareJSONEncoder, self).default(o)
0 commit comments