From 36424a2cea8e1607d198e084fa09556aa2e540b9 Mon Sep 17 00:00:00 2001 From: Karel Klic Date: Mon, 15 Feb 2010 10:04:13 +0100 Subject: display package and its owner in the output --- scripts/abrt-bz-ratingfixer | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'scripts') diff --git a/scripts/abrt-bz-ratingfixer b/scripts/abrt-bz-ratingfixer index 8239332..66c2b62 100755 --- a/scripts/abrt-bz-ratingfixer +++ b/scripts/abrt-bz-ratingfixer @@ -175,10 +175,10 @@ for bugid in bugids: pass if options.wiki: - print " | #[https://bugzilla.redhat.com/show_bug.cgi?id={0} {0}] || {1}/4 || {2}".format(bugid, bug['rating'], bug['comment_count'], bug['component'], owner) + print " | #[https://bugzilla.redhat.com/show_bug.cgi?id={0} {0}] || {1}/4 || {2} || {3} || {4}".format(bugid, bug['rating'], bug['comment_count'], bug['component'], owner) print " |-" else: - print "#{0} has a backtrace with rating {1}/4 and {2} comments".format(bugid, bug['rating'], bug['comment_count'], bug['component'], owner) + print "#{0} has a backtrace with rating {1}/4 and {2} comments, component {3}, owner {4}".format(bugid, bug['rating'], bug['comment_count'], bug['component'], owner) if options.wiki: print " |}" -- cgit