summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorAdam DePue <adepue@hearsaycorp.com>2014-11-05 02:57:47 +0000
committerTim Graham <timograham@gmail.com>2014-11-13 11:03:01 +0100
commit2d12a599383efff4ac1914e4cc5cf3b08cb2ff53 (patch)
tree54bd7b41fa24ba29cfad7c0e5fdae8842de33f30 /docs
parentd4bec655ae1c1122d7aea4bf8e58cc8a2b7bcc74 (diff)
[1.7.x] Fixed #23761 -- Fixed crash with MySQL validator and db_type is None.
The issue was fixed on master in e9103402c0fa873aea58a6a11dba510cd308cb84.
Diffstat (limited to 'docs')
-rw-r--r--docs/releases/1.7.2.txt5
1 files changed, 4 insertions, 1 deletions
diff --git a/docs/releases/1.7.2.txt b/docs/releases/1.7.2.txt
index 207b7d2a0c..976210367d 100644
--- a/docs/releases/1.7.2.txt
+++ b/docs/releases/1.7.2.txt
@@ -51,8 +51,11 @@ Bugfixes
(:ticket:`23420`).
* Fixed a migration serializing bug involving ``float("nan")`` and
- ``float("inf")`` (:ticket:23770:).
+ ``float("inf")`` (:ticket:`23770`).
* Fixed a regression where custom form fields having a ``queryset`` attribute
but no ``limit_choices_to`` could not be used in a
:class:`~django.forms.ModelForm` (:ticket:`23795`).
+
+* Fixed a custom field type validation error with MySQL backend when
+ ``db_type`` returned ``None`` (:ticket:`23761`).