Commit db0779db authored by Tim Graham's avatar Tim Graham
Browse files

Merge pull request #1447 from evansd/patch-1

Use `usegmt` flag in formatdate
parents 0cac4fbf 8a160d5d
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -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):
    """