Fixed #10423, a type on the `AdminSite.admin_view` docstring.

git-svn-id: http://code.djangoproject.com/svn/django/trunk@10410 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Jacob Kaplan-Moss 2009-04-06 21:11:10 +00:00
parent 07465b635d
commit 8415c057fb
1 changed files with 1 additions and 1 deletions

View File

@ -174,7 +174,7 @@ class AdminSite(object):
urls = super(MyAdminSite, self).get_urls()
urls += patterns('',
url(r'^my_view/$', self.protected_view(some_view))
url(r'^my_view/$', self.admin_view(some_view))
)
return urls
"""