summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorAndy Chosak <chosak@gmail.com>2014-10-08 15:12:42 -0400
committerAnssi Kääriäinen <akaariai@gmail.com>2014-11-03 15:51:48 +0200
commitceb1ffcc8da92a82338582bc6801de4bc8f05e32 (patch)
tree5aa7cf45b99ec598ab0f50d41d81caae01971acc /docs
parentc548c8d0d1112d2c4bace2eebf73ede35300d842 (diff)
Fixed #23420 - broken warning for unbound naive datetime objects
Fixed issue with warning message displayed for unbound naive datetime objects when USE_TZ is True. Adds unit test that demonstrates the issue (discoverable when using a custom lookup in MySQL).
Diffstat (limited to 'docs')
-rw-r--r--docs/releases/1.7.2.txt3
1 files changed, 3 insertions, 0 deletions
diff --git a/docs/releases/1.7.2.txt b/docs/releases/1.7.2.txt
index 7b455db62e..e50875305a 100644
--- a/docs/releases/1.7.2.txt
+++ b/docs/releases/1.7.2.txt
@@ -43,3 +43,6 @@ Bugfixes
* Fixed a migrations crash when adding ``GeometryField``\s with ``blank=True``
on PostGIS (:ticket:`23731`).
+
+* Allowed usage of ``DateTimeField()`` as ``Transform.output_field``
+ (:ticket:`23420`).