1
0
mirror of https://github.com/django/django.git synced 2025-06-06 03:59:12 +00:00

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
This commit is contained in:
Russell Keith-Magee 2009-07-11 15:36:31 +00:00
parent 52bc782621
commit 9515c008bb

View File

@ -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
--------------------------------