From 0d7431774f9b4b7db2062911515d531e6b0f0093 Mon Sep 17 00:00:00 2001 From: Aymeric Augustin Date: Sun, 22 Jan 2012 18:53:41 +0000 Subject: [PATCH] [1.3.X] Fixed #17575 -- Typo in an example of ModelAdmin.list_filter. Thanks apelisse AT gmail com for the report. git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.3.X@17388 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- docs/ref/contrib/admin/index.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/ref/contrib/admin/index.txt b/docs/ref/contrib/admin/index.txt index d5b16e1e99..7394c3aec2 100644 --- a/docs/ref/contrib/admin/index.txt +++ b/docs/ref/contrib/admin/index.txt @@ -544,7 +544,7 @@ subclass:: Fields in ``list_filter`` can also span relations using the ``__`` lookup:: class UserAdminWithLookup(UserAdmin): - list_filter = ('groups__name') + list_filter = ('groups__name',) .. attribute:: ModelAdmin.list_per_page