diff options
| author | Adrian Holovaty <adrian@holovaty.com> | 2008-06-16 03:41:03 +0000 |
|---|---|---|
| committer | Adrian Holovaty <adrian@holovaty.com> | 2008-06-16 03:41:03 +0000 |
| commit | 16482911fde4e99777b0e439def6294234b78ef6 (patch) | |
| tree | 674dd5ea6a3910f89e5d2ed8178d15e54136c4d1 | |
| parent | fbeec87b62b7286fd31bde5e7756c1ba9b918109 (diff) | |
Fixed #7127 -- Fixed incorrect docstring for page_not_found() view. Thanks, kcarnold and Simon Greenhill
git-svn-id: http://code.djangoproject.com/svn/django/trunk@7650 bcc190cf-cafb-0310-a4f2-bffc1f526a37
| -rw-r--r-- | django/views/defaults.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/django/views/defaults.py b/django/views/defaults.py index b4dfc1e1eb..8a8fa474b9 100644 --- a/django/views/defaults.py +++ b/django/views/defaults.py @@ -68,8 +68,7 @@ def shortcut(request, content_type_id, object_id): def page_not_found(request, template_name='404.html'): """ - Default 404 handler, which looks for the requested URL in the redirects - table, redirects if found, and displays 404 page if not redirected. + Default 404 handler. Templates: `404.html` Context: |
