From 1a81c5c282979e4660c7e1f3464ced526b100faf Mon Sep 17 00:00:00 2001 From: Luca Falavigna Date: Sat, 10 Mar 2012 12:32:33 +0000 Subject: [PATCH] Add link to relevant PTS page for binary-NEW packages Signed-off-by: Luca Falavigna --- dak/queue_report.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/dak/queue_report.py b/dak/queue_report.py index 9c0d2926..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)) -- 2.39.2