summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorJon Dufresne <jon.dufresne@gmail.com>2015-04-04 12:22:30 -0700
committerClaude Paroz <claude@2xlibre.net>2015-04-06 22:43:51 +0200
commit2cf58e80d1be46ae95f77c95fe014921742295dd (patch)
tree6f26f2fbeb8f330d495437f361682bd9eb1a9b03 /docs
parentad53213066ad25545959170f40322fa5b094989b (diff)
Fixed #24584 -- Fixed microsecond handling with older MySQLdb
Diffstat (limited to 'docs')
-rw-r--r--docs/releases/1.8.1.txt4
1 files changed, 4 insertions, 0 deletions
diff --git a/docs/releases/1.8.1.txt b/docs/releases/1.8.1.txt
index 303a793be2..65d32f190c 100644
--- a/docs/releases/1.8.1.txt
+++ b/docs/releases/1.8.1.txt
@@ -21,3 +21,7 @@ Bugfixes
* Fixed :djadmin:`squashmigrations` command when using
:class:`~django.db.migrations.operations.SeparateDatabaseAndState`
(:ticket:`24278`).
+
+* Stripped microseconds from ``datetime`` values when using an older version of
+ the MySQLdb DB API driver as it does not support fractional seconds
+ (:ticket:`24584`).