summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorAymeric Augustin <aymeric.augustin@m4x.org>2015-11-07 16:12:13 +0100
committerAymeric Augustin <aymeric.augustin@m4x.org>2015-11-07 23:17:33 +0100
commit1014ba026e879e56e0f265a8d9f54e6f39843348 (patch)
tree139015466a29d26072154f68786ee1eb9f8efc41 /docs
parent1679472165e840aef4c8c9ece2fbf4620b87beab (diff)
Fixed debug view crash during autumn DST change.
This only happens if USE_TZ = False and pytz is installed (perhaps not the most logical combination, but who am I to jugde?) Refs #23714 which essentially fixed the same problem when USE_TZ = True. Thanks Florian and Carl for insisting until I wrote a complete patch.
Diffstat (limited to 'docs')
-rw-r--r--docs/releases/1.8.7.txt3
1 files changed, 3 insertions, 0 deletions
diff --git a/docs/releases/1.8.7.txt b/docs/releases/1.8.7.txt
index 6db055b5fc..9aed739c01 100644
--- a/docs/releases/1.8.7.txt
+++ b/docs/releases/1.8.7.txt
@@ -9,4 +9,7 @@ Django 1.8.7 fixes several bugs in 1.8.6.
Bugfixes
========
+* Fixed a crash of the debug view during the autumn DST change when
+ :setting:`USE_TZ` is ``False`` and ``pytz`` is installed.
+
* ...