From 7cb51dc08fad6dc58da44480dd580ca3c2d8711f Mon Sep 17 00:00:00 2001 From: Thomas Rast Date: Tue, 10 Feb 2009 16:13:16 +0100 Subject: [PATCH] Change 'Posted-Date' to 'Date' --- notes.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/notes.py b/notes.py index 0f17fc7..851f31a 100644 --- a/notes.py +++ b/notes.py @@ -48,7 +48,7 @@ def compute_notes(commit, mail): if mail.subject: notes.append('Subject: %s\n' % mail.subject) notes.append('Message-Id: <%s>\n' % mail.message_id) - notes.append('Posted-Date: %s\n' + notes.append('Date: %s\n' % time.strftime("%c", time.localtime(mail.post_date))) if mail.in_reply_to: notes.append('In-Reply-To: %s\n' % mail.in_reply_to) -- 2.11.4.GIT