diff options
| author | Erik Romijn <eromijn@solidlinks.nl> | 2014-05-16 11:21:56 +0200 |
|---|---|---|
| committer | Erik Romijn <eromijn@solidlinks.nl> | 2014-05-16 11:21:56 +0200 |
| commit | 257fd48004df3243c80a4bc1bc6bd1e91f22b84b (patch) | |
| tree | c2888e8a48d7db3b2038bf1914c46777bdc51afd | |
| parent | e520a73eeea6b185b719901ab9985ecef00e5664 (diff) | |
Simplified an unnecessarily complex paragraph in view docs
| -rw-r--r-- | docs/topics/http/views.txt | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/docs/topics/http/views.txt b/docs/topics/http/views.txt index 0653d74f53..daefb95aac 100644 --- a/docs/topics/http/views.txt +++ b/docs/topics/http/views.txt @@ -199,11 +199,9 @@ Behind the scenes, Django determines the 500 view by looking for ``handler500`` in your root URLconf, and falling back to ``django.views.defaults.server_error`` if you did not define one. -One thing to note about 500 views: - -* If :setting:`DEBUG` is set to ``True`` (in your settings module), then - your 500 view will never be used, and the traceback will be displayed - instead, with some debug information. +If :setting:`DEBUG` is set to ``True`` (in your settings module), then +your 500 view will never be used, and the traceback will be displayed +instead, with some debug information. .. _http_forbidden_view: |
