X-Git-Url: https://git.decadent.org.uk/gitweb/?a=blobdiff_plain;ds=sidebyside;f=dak%2Fqueue_report.py;h=31b11d8dd0c0957f0eafa22c4b5279c0c942d263;hb=f8a0c616c5fb38451273419a53380c42522ab9d0;hp=04ddaeda4bbfcb464d7c3a6bc7986074368d295f;hpb=656008883f0b05b8d27ef12217dc69be4714ddbf;p=dak.git diff --git a/dak/queue_report.py b/dak/queue_report.py index 04ddaeda..31b11d8d 100755 --- a/dak/queue_report.py +++ b/dak/queue_report.py @@ -450,7 +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("Last-Modified: " + str(int(time.time()) - int(last_modified)) + "\n") log.write("Queue: " + type + "\n") (name, mail) = maint.split(":")