Fixed #15543 -- Tweaked change from r15696 to not use 'if' syntax introduce in Python 2.5. Thanks to an anonymous reporter for the heads up.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@15731 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
parent
e8fa1abd78
commit
d50f59ee18
|
@ -105,7 +105,10 @@ def parse_http_date(date):
|
||||||
try:
|
try:
|
||||||
year = int(m.group('year'))
|
year = int(m.group('year'))
|
||||||
if year < 100:
|
if year < 100:
|
||||||
year += 2000 if year < 70 else 1900
|
if year < 70:
|
||||||
|
year += 2000
|
||||||
|
else:
|
||||||
|
year += 1900
|
||||||
month = MONTHS.index(m.group('mon').lower()) + 1
|
month = MONTHS.index(m.group('mon').lower()) + 1
|
||||||
day = int(m.group('day'))
|
day = int(m.group('day'))
|
||||||
hour = int(m.group('hour'))
|
hour = int(m.group('hour'))
|
||||||
|
|
Loading…
Reference in New Issue