diff options
| author | Russell Keith-Magee <russell@keith-magee.com> | 2010-08-07 02:44:17 +0000 |
|---|---|---|
| committer | Russell Keith-Magee <russell@keith-magee.com> | 2010-08-07 02:44:17 +0000 |
| commit | 92a15532baae79fd62843e7747f2834dede4347d (patch) | |
| tree | df98535587edaf44685ef3146f3ac15b9a0e80b3 | |
| parent | 54e70e842eb9c0d9bd391906e94687c9f57d8719 (diff) | |
Fixed #13661 -- Corrected example in the serialization docs. Thanks to jabapyth for the report.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@13530 bcc190cf-cafb-0310-a4f2-bffc1f526a37
| -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 c5155107f0..b99a3b925e 100644 --- a/docs/topics/serialization.txt +++ b/docs/topics/serialization.txt @@ -338,7 +338,7 @@ example, ``(first name, last name)``. Then, when you call ``serializers.serialize()``, you provide a ``use_natural_keys=True`` argument:: - >>> serializers.serialize([book1, book2], format='json', indent=2, use_natural_keys=True) + >>> serializers.serialize('json', [book1, book2], indent=2, use_natural_keys=True) When ``use_natural_keys=True`` is specified, Django will use the ``natural_key()`` method to serialize any reference to objects of the |
