Ticket #7127: 7127.diff

File 7127.diff, 526 bytes (added by Simon Greenhill, 16 years ago)
  • django_src/django/views/defaults.py

     
    6868
    6969def page_not_found(request, template_name='404.html'):
    7070    """
    71     Default 404 handler, which looks for the requested URL in the redirects
    72     table, redirects if found, and displays 404 page if not redirected.
     71    Default 404 handler.
    7372
    7473    Templates: `404.html`
    7574    Context:
Back to Top