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:18:59 +0100
commit94d13415d81f24743045bcaa43027c737e2bcf5f (patch)
tree1cb2570b61e236c604a2787a3d4b32ba78d82b7c /docs
parent78a28cca200e6e03432bab9bf73856b8f778c6f0 (diff)
[1.8.x] 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. Backport of 1014ba026e from master
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.
+
* ...