Skip to content

Commit

Permalink
Fixed #2607 -- Fixed incorrect ordering of super() arguments in DateT…
Browse files Browse the repository at this point in the history
…imeAwareJSONEncoder. Thanks for the patch, dummy@habmalnefrage.de

git-svn-id: http://code.djangoproject.com/svn/django/trunk@3671 bcc190cf-cafb-0310-a4f2-bffc1f526a37
  • Loading branch information
adrianholovaty committed Aug 28, 2006
1 parent 33637e3 commit e7424f0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion django/core/serializers/json.py
Expand Up @@ -48,4 +48,4 @@ def default(self, o):
elif isinstance(o, datetime.time): elif isinstance(o, datetime.time):
return o.strftime(self.TIME_FORMAT) return o.strftime(self.TIME_FORMAT)
else: else:
return super(self, DateTimeAwareJSONEncoder).default(o) return super(DateTimeAwareJSONEncoder, self).default(o)

0 comments on commit e7424f0

Please sign in to comment.