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

[3.1.x] Fixed #32038 -- Fixed EmptyFieldListFilter crash with GenericRelation.

Thanks Javier Matos Odut for the report.

Backport of e4ab44a4b2 from master
This commit is contained in:
Mariusz Felisiak
2020-09-24 09:45:51 +02:00
parent 986cd28f95
commit b7df7de44f
3 changed files with 33 additions and 0 deletions

View File

@@ -23,3 +23,6 @@ Bugfixes
* Fixed a bug in Django 3.1 where a test database was not synced during
creation when using the :setting:`MIGRATE <TEST_MIGRATE>` test database
setting (:ticket:`32012`).
* Fixed a ``django.contrib.admin.EmptyFieldListFilter`` crash when using on a
``GenericRelation`` (:ticket:`32038`).