X-Git-Url: https://git.decadent.org.uk/gitweb/?a=blobdiff_plain;f=dak%2Fshow_deferred.py;h=809762264532ab4f47517d49e02f3f3e77af4024;hb=17c5cab4eb8d5181ec7a81267a4e2e6b43c0fc65;hp=a76fd389ea8ef484feba22ff99ef35c1c5356291;hpb=c8182c171aa569945e899566fdf6492cfb166d71;p=dak.git diff --git a/dak/show_deferred.py b/dak/show_deferred.py index a76fd389..80976226 100755 --- a/dak/show_deferred.py +++ b/dak/show_deferred.py @@ -87,12 +87,6 @@ def header(): def footer(): res = "

Timestamp: %s (UTC)

" % (time.strftime("%d.%m.%Y / %H:%M:%S", time.gmtime())) res += "

There are graphs about the queues available.

" - res += """ - Valid HTML 4.01! - - Valid CSS! - """ res += "" return res.encode('utf-8') @@ -108,7 +102,7 @@ def table_header(): """ def table_footer(): - return '

non-NEW uploads are available, see the UploadQueue-README for more information.


\n' + return '

non-NEW uploads are available (machine readable version), see the UploadQueue-README for more information.


\n' def table_row(changesname, delay, changed_by, closes, fingerprint): global row_number @@ -191,7 +185,7 @@ def get_upload_data(changesfn): uploader = achanges.get('changed-by') uploader = re.sub(r'^\s*(\S.*)\s+<.*>',r'\1',uploader) with utils.open_file(changesfn) as f: - fingerprint = SignedFile(f.read(), keyrings=get_active_keyring_paths()).fingerprint + fingerprint = SignedFile(f.read(), keyrings=get_active_keyring_paths(), require_signature=False).fingerprint if Cnf.has_key("Show-Deferred::LinkPath"): isnew = 0 suites = get_suites_source_in(achanges['source'])