Author: kmtracey
Date: 2008-11-01 15:14:36 -0500 (Sat, 01 Nov 2008)
New Revision: 9318
Modified:
django/trunk/docs/topics/serialization.txt
Log:
Fixed #9374 -- Added missing close paren in serialization doc. Thanks jordy.
Modified: django/trunk/docs/topics/serialization.txt
===================================================================
--- django/trunk/docs/topics/serialization.txt 2008-11-01 19:47:09 UTC (rev
9317)
+++ django/trunk/docs/topics/serialization.txt 2008-11-01 20:14:36 UTC (rev
9318)
@@ -30,7 +30,7 @@
data = xml_serializer.getvalue()
This is useful if you want to serialize data directly to a file-like object
-(which includes an :class:`~django.http.HttpResponse` ::
+(which includes an :class:`~django.http.HttpResponse`)::
out = open("file.xml", "w")
xml_serializer.serialize(SomeModel.objects.all(), stream=out)
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Django updates" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/django-updates?hl=en
-~----------~----~----~----~------~----~------~--~---