1
0
mirror of https://github.com/django/django.git synced 2025-03-12 18:30:48 +00:00

Merge pull request #1447 from evansd/patch-1

Use `usegmt` flag in formatdate
This commit is contained in:
Tim Graham 2013-08-09 12:18:56 -07:00
commit db0779dbe1

View File

@ -109,8 +109,7 @@ def http_date(epoch_seconds=None):
Outputs a string in the format 'Wdy, DD Mon YYYY HH:MM:SS GMT'.
"""
rfcdate = formatdate(epoch_seconds)
return '%s GMT' % rfcdate[:25]
return formatdate(epoch_seconds, usegmt=True)
def parse_http_date(date):
"""