status-report-scripts parseBZbugList,1.37,1.38

Christian Iseli (c4chris) fedora-extras-commits at redhat.com
Wed Jun 7 22:02:41 UTC 2006


Author: c4chris

Update of /cvs/fedora/status-report-scripts
In directory cvs-int.fedora.redhat.com:/tmp/cvs-serv1367

Modified Files:
	parseBZbugList 
Log Message:
Ignore tracker bugs.


Index: parseBZbugList
===================================================================
RCS file: /cvs/fedora/status-report-scripts/parseBZbugList,v
retrieving revision 1.37
retrieving revision 1.38
diff -u -r1.37 -r1.38
--- parseBZbugList	7 Jun 2006 11:23:55 -0000	1.37
+++ parseBZbugList	7 Jun 2006 22:02:36 -0000	1.38
@@ -873,7 +873,7 @@
   foreach my $b (sort(keys %$BZ)) {
     my $a = $BZ->{$b};
     next if $$a[6] eq "\"CLOSED\"";
-    next if $$a[11] =~ /Tracker for /;
+    next if $$a[11] =~ /Tracker/;
     if (Date_Cmp($$a[2], $fourWeeksAgo) < 0) {
       if (Date_Cmp($$a[2], $eightWeeksAgo) < 0) {
 	push @LATE, $b;
@@ -1136,6 +1136,7 @@
   my ($BZ) = @_;
   foreach my $b (keys %$BZ) {
     my $a = $BZ->{$b};
+    next if $$a[11] =~ /Tracker/;
     my $assignee = $$a[4];
     $assignee =~ s/["]//g;
     my $s = $OWNER_STAT{$assignee};




More information about the fedora-extras-commits mailing list