summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorAlasdair Nicol <alasdair@thenicols.net>2019-04-04 00:17:25 +0100
committerMariusz Felisiak <felisiak.mariusz@gmail.com>2019-04-25 11:08:22 +0200
commita5accc0368c6575b55976c06af36ed399c85c781 (patch)
treec5d6a2ac65cd913db576eabc4820b49eab8c4639 /docs
parentfc9566d42daf28cdaa25a5db1b5ade253ceb064f (diff)
Fixed #30318 -- Added check for importability of arguments of custom error handler views.
Thanks to Jon on Stack Overflow for reporting the issue.
Diffstat (limited to 'docs')
-rw-r--r--docs/ref/checks.txt2
-rw-r--r--docs/releases/2.2.1.txt3
2 files changed, 5 insertions, 0 deletions
diff --git a/docs/ref/checks.txt b/docs/ref/checks.txt
index 2944ad7544..1f0601ab5d 100644
--- a/docs/ref/checks.txt
+++ b/docs/ref/checks.txt
@@ -473,6 +473,8 @@ The following checks are performed on your URL configuration:
end with a slash.
* **urls.E007**: The custom ``handlerXXX`` view ``'path.to.view'`` does not
take the correct number of arguments (…).
+* **urls.E008**: The custom ``handlerXXX`` view ``'path.to.view'`` could not be
+ imported.
``contrib`` app checks
======================
diff --git a/docs/releases/2.2.1.txt b/docs/releases/2.2.1.txt
index 48cbfb3a8f..0ca76bcbf8 100644
--- a/docs/releases/2.2.1.txt
+++ b/docs/releases/2.2.1.txt
@@ -46,3 +46,6 @@ Bugfixes
* Fixed a regression in Django 2.2 where
:class:`~django.contrib.postgres.search.SearchVector` generates SQL that is
not indexable (:ticket:`30385`).
+
+* Fixed a regression in Django 2.2 that caused an exception to be raised when
+ a custom error handler could not be imported (:ticket:`30318`).