From 9515c008bbca1e3881ebeac90d4a5c7a0d558224 Mon Sep 17 00:00:00 2001 From: Russell Keith-Magee Date: Sat, 11 Jul 2009 15:36:31 +0000 Subject: [PATCH] Fixed #11454 -- Corrected mismatched parenthesis in admin docs. Thanks to seveas for the report. git-svn-id: http://code.djangoproject.com/svn/django/trunk@11217 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 4b1dc55b21..394ebd1f24 100644 --- a/docs/ref/contrib/admin/index.txt +++ b/docs/ref/contrib/admin/index.txt @@ -849,7 +849,7 @@ provided some extra mapping data that would not otherwise be available:: 'osm_data': self.get_osm_info(), } return super(MyModelAdmin, self).change_view(request, object_id, - extra_context=my_context)) + extra_context=my_context) ``ModelAdmin`` media definitions --------------------------------