From: Michael Casadevall Date: Sat, 27 Dec 2008 01:50:15 +0000 (-0500) Subject: Added Last-Modified field for QA team X-Git-Url: https://err.no/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=656008883f0b05b8d27ef12217dc69be4714ddbf;p=dak Added Last-Modified field for QA team Signed-off-by: Michael Casadevall --- diff --git a/ChangeLog b/ChangeLog index 06516ccd..cf93ce7e 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2008-12-26 Michael Casadevall + + * dak/queue_report.py - Added Last Modified in asctime() for QA team + 2008-12-23 Michael Casadevall * dak/queue_report.py - Added 822 output format diff --git a/dak/queue_report.py b/dak/queue_report.py index ce88d09f..04ddaeda 100755 --- a/dak/queue_report.py +++ b/dak/queue_report.py @@ -450,6 +450,7 @@ def process_changes_files(changes_files, type, log): log.write("Architectures: ") log.write( (", ".join(arch_list.split(" "))) + "\n") log.write("Age: " + time_pp(last_modified) + "\n") + log.write("Last-Modified: " + time.asctime(time.time() - last_modified) + "\n") log.write("Queue: " + type + "\n") (name, mail) = maint.split(":")