summaryrefslogtreecommitdiff
path: root/docs/ref
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:18:39 +0100
commit3f7615cddc69235d466fb680fb05869f2a80d1e4 (patch)
treee0759d4765d846d7ce7f371ac8bfda36d57f47f1 /docs/ref
parent58161e4e93d1fc796fc804c943028d4433f4813c (diff)
Fixed #22317 -- Fixed documented handler400 default value
Diffstat (limited to 'docs/ref')
-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