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:45:36 +0200
commit551d4bb46a3db7afed2d9bab4b27628a0a44b0fc (patch)
treee63d2d557d8fdc14482894fc5f2bdb716cc5fc74 /docs
parent773387ce42de1c355e6ed6b9ddd49dc52474fc0a (diff)
[1.8.x] Fixed #24584 -- Fixed microsecond handling with older MySQLdb
Backport of 2cf58e80d from master.
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`).