Skip to content

Commit 6623636

Browse files
author
Richard Jones
committed
s/Modifed/Modified (thanks donfu)
1 parent 73dc9a9 commit 6623636

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
@@ -42,6 +42,7 @@ Fixed:
4242
- fixed editing of message contents
4343
- loosened the detection of issue cross-references in messages
4444
- open CSV files in "universal newline" mode
45+
- s/Modifed/Modified (thanks donfu)
4546

4647

4748
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.192 2004-10-25 10:43:20 a1s Exp $
1+
# $Id: client.py,v 1.193 2004-10-26 07:58:08 richard Exp $
22

33
"""WWW request handler (also used in the stand-alone server).
44
"""
@@ -592,7 +592,7 @@ def _serve_file(self, lmt, mime_type, content):
592592
self.additional_headers['Content-Type'] = mime_type
593593
self.additional_headers['Content-Length'] = len(content)
594594
lmt = rfc822.formatdate(lmt)
595-
self.additional_headers['Last-Modifed'] = lmt
595+
self.additional_headers['Last-Modified'] = lmt
596596
self.write(content)
597597

598598
def renderContext(self):

0 commit comments

Comments
 (0)