Author: aaugustin
Date: 2012-01-22 10:53:41 -0800 (Sun, 22 Jan 2012)
New Revision: 17388

Modified:
   django/branches/releases/1.3.X/docs/ref/contrib/admin/index.txt
Log:
[1.3.X] Fixed #17575 -- Typo in an example of ModelAdmin.list_filter. Thanks 
apelisse AT gmail com for the report.


Modified: django/branches/releases/1.3.X/docs/ref/contrib/admin/index.txt
===================================================================
--- django/branches/releases/1.3.X/docs/ref/contrib/admin/index.txt     
2012-01-22 16:41:20 UTC (rev 17387)
+++ django/branches/releases/1.3.X/docs/ref/contrib/admin/index.txt     
2012-01-22 18:53:41 UTC (rev 17388)
@@ -544,7 +544,7 @@
     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
 

-- 
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To post to this group, send email to django-updates@googlegroups.com.
To unsubscribe from this group, send email to 
django-updates+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-updates?hl=en.

Reply via email to