diff options
| author | Giannis Terzopoulos <terzo.giannis@gmail.com> | 2024-03-18 14:50:32 +0100 |
|---|---|---|
| committer | Mariusz Felisiak <felisiak.mariusz@gmail.com> | 2024-03-27 08:14:54 +0100 |
| commit | d658a3162fbeb68d148d1b2fcf4da4fe1437eddb (patch) | |
| tree | 2614270a87d4c178dfca714dc48b075a75c9676b /docs/ref | |
| parent | b98271a6e42107233311d17f5d7bc74fbb47f22c (diff) | |
Fixed #35233 -- Moved template engine system checks to backend methods.
Thanks Adam Johnson for reviews.
Diffstat (limited to 'docs/ref')
| -rw-r--r-- | docs/ref/checks.txt | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/docs/ref/checks.txt b/docs/ref/checks.txt index cf0ab32efa..efc8cf666a 100644 --- a/docs/ref/checks.txt +++ b/docs/ref/checks.txt @@ -575,7 +575,9 @@ configured: * **templates.E001**: You have ``'APP_DIRS': True`` in your :setting:`TEMPLATES` but also specify ``'loaders'`` in ``OPTIONS``. Either - remove ``APP_DIRS`` or remove the ``'loaders'`` option. + remove ``APP_DIRS`` or remove the ``'loaders'`` option. *This check is + removed in Django 5.1 as system checks may now raise* + ``ImproperlyConfigured`` *instead.* * **templates.E002**: ``string_if_invalid`` in :setting:`TEMPLATES` :setting:`OPTIONS <TEMPLATES-OPTIONS>` must be a string but got: ``{value}`` (``{type}``). |
