Commit f03f9568 authored by Jacob Kaplan-Moss's avatar Jacob Kaplan-Moss
Browse files

Do [10337] correctly; thanks, Alex.

git-svn-id: http://code.djangoproject.com/svn/django/trunk@10338 bcc190cf-cafb-0310-a4f2-bffc1f526a37
parent 226ab592
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -129,7 +129,7 @@ def view_index(request):
            site_obj = GenericSite()
        for (func, regex) in view_functions:
            views.append({
                'name': hasattr(func, '__class__') and func.__class__.__name__ or func.__name__,
                'name': getattr(func, '__name__', func.__class__.__name__),
                'module': func.__module__,
                'site_id': settings_mod.SITE_ID,
                'site': site_obj,