Fix previous checkin, hopelessly broken as it was; reported by Detlef Lannert.

This commit is contained in:
Jeremy Hylton 2001-02-22 13:24:27 +00:00
parent 793de09b21
commit f5d3ea00b9
1 changed files with 7 additions and 7 deletions

View File

@ -919,13 +919,13 @@ def Internaldate2tuple(resp):
mon = Mon2num[mo.group('mon')]
zonen = mo.group('zonen')
day = int(mo.group(day))
year = int(mo.group(year))
hour = int(mo.group(hour))
min = int(mo.group(min))
sec = int(mo.group(sec))
zoneh = int(mo.group(zoneh))
zonem = int(mo.group(zonem))
day = int(mo.group('day'))
year = int(mo.group('year'))
hour = int(mo.group('hour'))
min = int(mo.group('min'))
sec = int(mo.group('sec'))
zoneh = int(mo.group('zoneh'))
zonem = int(mo.group('zonem'))
# INTERNALDATE timezone must be subtracted to get UT