From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id C134B1381F3 for ; Sat, 5 Oct 2013 15:45:12 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 57AC9E0ADC; Sat, 5 Oct 2013 15:45:12 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id E2EC9E0ADC for ; Sat, 5 Oct 2013 15:45:11 +0000 (UTC) Received: from flycatcher.gentoo.org (flycatcher.gentoo.org [81.93.255.6]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 0327833EE60 for ; Sat, 5 Oct 2013 15:45:11 +0000 (UTC) Received: by flycatcher.gentoo.org (Postfix, from userid 2238) id 91B3A2004C; Sat, 5 Oct 2013 15:45:09 +0000 (UTC) From: "Markos Chandras (hwoarang)" To: gentoo-commits@lists.gentoo.org Reply-To: gentoo-dev@lists.gentoo.org, hwoarang@gentoo.org Subject: [gentoo-commits] gentoo commit in src/gwn: gmn_bugzie.py X-VCS-Repository: gentoo X-VCS-Files: gmn_bugzie.py X-VCS-Directories: src/gwn X-VCS-Committer: hwoarang X-VCS-Committer-Name: Markos Chandras Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Message-Id: <20131005154509.91B3A2004C@flycatcher.gentoo.org> Date: Sat, 5 Oct 2013 15:45:09 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 4ff5b13f-9da7-41f7-8a36-98491deba616 X-Archives-Hash: 939715d9bc2aad23e96b636a1f79bf46 hwoarang 13/10/05 15:45:09 Modified: gmn_bugzie.py Log: gmn_bugzie.py: Reword output Revision Changes Path 1.4 src/gwn/gmn_bugzie.py file : http://sources.gentoo.org/viewvc.cgi/gentoo/src/gwn/gmn_bugzie.py?rev=1.4&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo/src/gwn/gmn_bugzie.py?rev=1.4&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo/src/gwn/gmn_bugzie.py?r1=1.3&r2=1.4 Index: gmn_bugzie.py =================================================================== RCS file: /var/cvsroot/gentoo/src/gwn/gmn_bugzie.py,v retrieving revision 1.3 retrieving revision 1.4 diff -u -r1.3 -r1.4 --- gmn_bugzie.py 29 Sep 2013 14:39:26 -0000 1.3 +++ gmn_bugzie.py 5 Oct 2013 15:45:09 -0000 1.4 @@ -136,7 +136,7 @@ #7. We have every value we need, now build the report -print "%s:%s" % (date_from_display, date_to_display) +print "Bugzilla statistics from %s to %s\n" % (date_from_display, date_to_display) print "New:%d" % new_bug_count print "Closed:%d" % closed_bug_count print "Not fixed:%d" % closed_nofix_bug_count @@ -147,13 +147,16 @@ print "Major:%d" % severities.get('"major"',0) cleft = 0 +print "\nTeam Statistics\n" #8. Closed Bugs +print "==Closed Bugs==\n" for i in range(0,9): print "%s:%d" % (strip(groups_that_closed_most[i][2][0]), groups_that_closed_most[i][1]) cleft += groups_that_closed_most[i][1] print "Others:%d" % (total_closed - cleft) #9. Open Bugs +print "\n\n==Open Bugs==\n" oleft = 0 for i in range(0,9): print "%s:%d" % (strip(groups_that_opened_most[i][2][0]), groups_that_opened_most[i][1])