summaryrefslogtreecommitdiff
path: root/Lib/tzparse.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/tzparse.py')
-rw-r--r--Lib/tzparse.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/tzparse.py b/Lib/tzparse.py
index 6cb08995b7..370d46b912 100644
--- a/Lib/tzparse.py
+++ b/Lib/tzparse.py
@@ -48,7 +48,7 @@ def isdst(time):
import calendar
(tzname, delta, dstname, daystart, hourstart, dayend, hourend) = \
tzparams
- year, month, days, hours, mins, secs, yday, wday = \
+ year, month, days, hours, mins, secs, yday, wday, isdst = \
calendar.gmtime(time - delta*3600)
return (daystart, hourstart) <= (yday+1, hours) < (dayend, hourend)