Skip to content

Commit c901668

Browse files
author
Richard Jones
committed
merge from HEAD
1 parent 0407053 commit c901668

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

CHANGES.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ Fixed:
77
- fixed editing of message contents
88
- loosened the detection of issue cross-references in messages
99
- open CSV files in "universal newline" mode
10+
- s/Modifed/Modified (thanks donfu)
1011

1112

1213
2004-10-15 0.7.8

roundup/cgi/client.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# $Id: client.py,v 1.176.2.5 2004-10-07 23:14:23 richard Exp $
1+
# $Id: client.py,v 1.176.2.6 2004-10-26 07:59:28 richard Exp $
22

33
"""WWW request handler (also used in the stand-alone server).
44
"""
@@ -506,7 +506,7 @@ def _serve_file(self, lmt, mime_type, content):
506506
self.additional_headers['Content-Type'] = mime_type
507507
self.additional_headers['Content-Length'] = len(content)
508508
lmt = rfc822.formatdate(lmt)
509-
self.additional_headers['Last-Modifed'] = lmt
509+
self.additional_headers['Last-Modified'] = lmt
510510
self.write(content)
511511

512512
def renderContext(self):

0 commit comments

Comments
 (0)