From 0a11c13acfc0700bfd435bac76fe2c8c5643779a Mon Sep 17 00:00:00 2001 From: James Bennett Date: Sat, 30 Aug 2008 06:02:14 +0000 Subject: [PATCH] Fix inadvertent formatting introduced in [8732] git-svn-id: http://code.djangoproject.com/svn/django/trunk@8739 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- docs/ref/contrib/admin.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/ref/contrib/admin.txt b/docs/ref/contrib/admin.txt index ffde251f88..e2bd39c686 100644 --- a/docs/ref/contrib/admin.txt +++ b/docs/ref/contrib/admin.txt @@ -226,7 +226,7 @@ You have four possible values that can be used in ``list_display``: list_display = (upper_case_name,) * A string representing an attribute on the ``ModelAdmin``. This behaves - same as the callable. For example:: + same as the callable. For example:: class PersonAdmin(admin.ModelAdmin): list_display = ('upper_case_name',)