Fixed #4042 -- Fixed typo in serialization example. Thanks, Vinay Sajip.

git-svn-id: http://code.djangoproject.com/svn/django/trunk@5165 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Malcolm Tredinnick 2007-05-08 03:07:58 +00:00
parent aaf228de9a
commit 4fddf43b81
1 changed files with 1 additions and 1 deletions

View File

@ -109,7 +109,7 @@ serializer, you must pass ``ensure_ascii=False`` as a parameter to the
For example::
json_serializer = serializers.get_serializer("json")
json_serializer = serializers.get_serializer("json")()
json_serializer.serialize(queryset, ensure_ascii=False, stream=response)
Writing custom serializers