1
0
mirror of https://github.com/django/django.git synced 2025-10-31 09:41:08 +00:00

Fixed #26280 -- Fixed cached template loader crash when loading nonexistent template.

This commit is contained in:
Ivan Tsouvarev
2016-02-26 09:49:02 +03:00
committed by Tim Graham
parent eb44172760
commit 8890c533e0
3 changed files with 16 additions and 1 deletions

View File

@@ -46,3 +46,6 @@ Bugfixes
* Changed the admin's "permission denied" message in the login template to use
``get_username`` instead of ``username`` to support custom user models
(:ticket:`26231`).
* Fixed a crash when passing a nonexistent template name to the cached template
loader's ``load_template()`` method (:ticket:`26280`).