1
0
mirror of https://github.com/django/django.git synced 2025-10-31 09:41:08 +00:00

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.
This commit is contained in:
Aymeric Augustin
2015-11-07 16:12:13 +01:00
parent 1679472165
commit 1014ba026e
3 changed files with 48 additions and 6 deletions

View File

@@ -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.
* ...