diff options
| author | Karen Tracey <kmtracey@gmail.com> | 2008-11-01 20:17:10 +0000 |
|---|---|---|
| committer | Karen Tracey <kmtracey@gmail.com> | 2008-11-01 20:17:10 +0000 |
| commit | daf875259d3840652feeec0e91b81b5d16944e46 (patch) | |
| tree | 52fd4eeaa1b52637c17edacfd376ae2bbb9b2911 /docs | |
| parent | 19d164e051083d207ef68b31b8099a101578f483 (diff) | |
[1.0.X] Fixed #9374 -- Added missing close paren in serialization doc. Thanks jordy.
[9318] from trunk.
git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.0.X@9319 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/topics/serialization.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/topics/serialization.txt b/docs/topics/serialization.txt index c138fc23be..78bf6f5f03 100644 --- a/docs/topics/serialization.txt +++ b/docs/topics/serialization.txt @@ -30,7 +30,7 @@ You can also use a serializer object directly:: 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) |
