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(-) 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 " |}" -- cgit From e245149118bff4a364fb6fbb0651b1f09e0ce0bc Mon Sep 17 00:00:00 2001 From: Karel Klic Date: Mon, 15 Feb 2010 10:12:58 +0100 Subject: Git ignores ABRT's RPMs and build intermediate files --- .gitignore | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.gitignore b/.gitignore index fa9b700e..fa420738 100644 --- a/.gitignore +++ b/.gitignore @@ -3,6 +3,10 @@ cscope.out *.o *.lo *.la +abrt-*.rpm +abrt-?.?.?.tar.gz +abrt-?.?.?/ +i686/ po/*.gmo .deps .libs -- cgit