Skip to content

Commit

Permalink
Fixed #10954 -- Corrected error in docs example describing extending …
Browse files Browse the repository at this point in the history
…the JSON serializer. Thanks to Glenn for the report.

git-svn-id: http://code.djangoproject.com/svn/django/trunk@10654 bcc190cf-cafb-0310-a4f2-bffc1f526a37
  • Loading branch information
freakboy3742 committed May 2, 2009
1 parent fbf5eaa commit e85bc81
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/topics/serialization.txt
Expand Up @@ -187,7 +187,7 @@ them. Something like this will work::
def default(self, obj):
if isinstance(obj, Promise):
return force_unicode(obj)
return obj
return super(LazyEncoder, self).default(obj)

.. _special encoder: http://svn.red-bean.com/bob/simplejson/tags/simplejson-1.7/docs/index.html

0 comments on commit e85bc81

Please sign in to comment.