summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorClaude Paroz <claude@2xlibre.net>2014-03-23 21:17:52 +0100
committerClaude Paroz <claude@2xlibre.net>2014-03-23 21:20:43 +0100
commitd908b67e81ee3f5413c7581522605a2d0bf836ff (patch)
tree1d684a03b1f4c062e17858593d4ac5f5f997b01c
parentc9b2feffeed46765ed6c4b74066059e2a6541735 (diff)
[1.6.x] Fixed #22317 -- Fixed documented handler400 default value
Backport of 3f7615cddc from master.
-rw-r--r--docs/ref/urls.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/ref/urls.txt b/docs/ref/urls.txt
index 3ab04cbd63..78e2e28980 100644
--- a/docs/ref/urls.txt
+++ b/docs/ref/urls.txt
@@ -123,7 +123,7 @@ A callable, or a string representing the full Python import path to the view
that should be called if the HTTP client has sent a request that caused an error
condition and a response with a status code of 400.
-By default, this is ``'django.views.defaults.permission_denied'``. That default
+By default, this is ``'django.views.defaults.bad_request'``. That default
value should suffice.
See the documentation about :ref:`the 400 (bad request) view