Fixed #25683 -- Allowed ModelChoiceField(queryset=...) to accept Managers.

This fixes a regression from refs #25496.
This commit is contained in:
Marti Raudsepp 2015-11-05 19:02:18 +02:00 committed by Tim Graham
parent c6da4b0c68
commit 1155843a41
3 changed files with 18 additions and 6 deletions

View file

@ -14,3 +14,7 @@ Bugfixes
* Fixed a regression in 1.8.6 that caused database routers without an
``allow_migrate()`` method to crash (:ticket:`25686`).
* Fixed a regression in 1.8.6 by restoring the ability to use ``Manager``
objects for the ``queryset`` argument of ``ModelChoiceField``
(:ticket:`25683`).