Commit 5f730ded authored by Russell Keith-Magee's avatar Russell Keith-Magee
Browse files

[1.0.X] Fixed #10954 -- Corrected error in docs example describing extending...

[1.0.X] Fixed #10954 -- Corrected error in docs example describing extending the JSON serializer. Thanks to Glenn for the report.

Merge of r10654 from trunk.

git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.0.X@10656 bcc190cf-cafb-0310-a4f2-bffc1f526a37
parent d22290b2
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -181,6 +181,6 @@ 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