]> git.decadent.org.uk Git - dak.git/blobdiff - dak/queue_report.py
Actually use the sleep call ...
[dak.git] / dak / queue_report.py
index 04ddaeda4bbfcb464d7c3a6bc7986074368d295f..31b11d8dd0c0957f0eafa22c4b5279c0c942d263 100755 (executable)
@@ -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(":")