summaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorKarel Klic <kklic@redhat.com>2010-02-15 10:04:13 +0100
committerKarel Klic <kklic@redhat.com>2010-02-15 10:04:13 +0100
commit36424a2cea8e1607d198e084fa09556aa2e540b9 (patch)
treea1fac7beff2f9f280fd109171e9606254cdbc66f /scripts
parent8990f74eb66570c82bb67f98bdf8f514143c8650 (diff)
downloadabrt-36424a2cea8e1607d198e084fa09556aa2e540b9.tar.gz
abrt-36424a2cea8e1607d198e084fa09556aa2e540b9.tar.xz
abrt-36424a2cea8e1607d198e084fa09556aa2e540b9.zip
display package and its owner in the output
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/abrt-bz-ratingfixer4
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/abrt-bz-ratingfixer b/scripts/abrt-bz-ratingfixer
index 82393329..66c2b628 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 " |}"