From 599852d04db750c62f9b8e5370e35ef71acfd5b6 Mon Sep 17 00:00:00 2001 From: Malcolm Tredinnick Date: Fri, 14 Nov 2008 07:49:51 +0000 Subject: [PATCH] Fixed #9507 -- Correct an example in the admin docs. Thanks, john_scott and SmileyChris. git-svn-id: http://code.djangoproject.com/svn/django/trunk@9432 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- docs/ref/contrib/admin.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/ref/contrib/admin.txt b/docs/ref/contrib/admin.txt index 4f3f898281..f24dc46bf5 100644 --- a/docs/ref/contrib/admin.txt +++ b/docs/ref/contrib/admin.txt @@ -262,7 +262,7 @@ You have four possible values that can be used in ``list_display``: example:: def upper_case_name(obj): - return "%s %s" % (obj.first_name, obj.last_name).upper() + return ("%s %s" % (obj.first_name, obj.last_name)).upper() upper_case_name.short_description = 'Name' class PersonAdmin(admin.ModelAdmin): @@ -275,7 +275,7 @@ You have four possible values that can be used in ``list_display``: list_display = ('upper_case_name',) def upper_case_name(self, obj): - return "%s %s" % (obj.first_name, obj.last_name).upper() + return ("%s %s" % (obj.first_name, obj.last_name)).upper() upper_case_name.short_description = 'Name' * A string representing an attribute on the model. This behaves almost