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

Fixed #24940 -- Made model managers hashable

Thanks Federico Jaramillo Martínez for the report and Tim Graham for the
test and review.
This commit is contained in:
Markus Holtermann
2015-06-18 21:57:08 +02:00
parent 200e06a5ee
commit d3d66d4722
4 changed files with 20 additions and 2 deletions

View File

@@ -74,3 +74,6 @@ Bugfixes
* Fixed crash when uploading images with MIME types that Pillow doesn't detect,
such as bitmap, in ``forms.ImageField`` (:ticket:`24948`).
* Fixed a regression when deleting a model through the admin that has a
``GenericRelation`` with a ``related_query_name`` (:ticket:`24940`).