X-Git-Url: https://git.decadent.org.uk/gitweb/?a=blobdiff_plain;f=dak%2Fqueue_report.py;h=cb2b93904a974d5800be5b2a0e6689cecd27b198;hb=1a81c5c282979e4660c7e1f3464ced526b100faf;hp=5fd9288a8c6da8711b48e1eff274f213e169c955;hpb=27e00376e81d1c37ff327ee0d39670b266418869;p=dak.git diff --git a/dak/queue_report.py b/dak/queue_report.py index 5fd9288a..cb2b9390 100755 --- a/dak/queue_report.py +++ b/dak/queue_report.py @@ -290,7 +290,10 @@ def table_row(source, version, arch, last_mod, maint, distribution, closes, fing else: print "" % (trclass) - print "%s" % (source) + if "binNEW" in trclass: + print "%s" % (source) + else: + print "%(source)s" % {'source': source} print "" for vers in version.split(): print "%s
" % (source, utils.html_escape(vers), utils.html_escape(vers)) @@ -550,7 +553,7 @@ def process_changes_files(changes_files, type, log, rrd_dir): (name, mail) = changedby.split(":", 1) log.write("Changed-By: " + name + " <"+mail+">" + "\n") if sponsor: - log.write("Sponsored-By: " + sponsor + "\n") + log.write("Sponsored-By: " + "@".join(sponsor.split("@")[:2]) + "\n") log.write("Distribution:") for dist in distribution: log.write(" " + dist)