X-Git-Url: https://git.donarmstrong.com/?p=bugscan.git;a=blobdiff_plain;f=bugcounts;h=3051b19a9074df34c68b5c1ceed5f52d50a3ffa2;hp=4c2200533232dddbf03e1dba35790b7745796bd4;hb=37c1a7189dec60183ce19b121afa2747f17dda68;hpb=4ef8564c7e87c67015de727dbf9bd23a51f927d3 diff --git a/bugcounts b/bugcounts index 4c22005..3051b19 100755 --- a/bugcounts +++ b/bugcounts @@ -42,7 +42,6 @@ my $total=0; # total number of bugs my $patchcount=0; # Number of bugs that have a fix proposed my $pendingcount=0; # Number of bugs that will have a fix uploaded RSN my $ignorecount=0; # Number of bugs being ignored -my $nottestingcount=0; # Number of bugs on packages not in testing my $worrycount=0; # Number of bugs we're actually worried about for my $p (keys %scanlib::packagelist) { @@ -53,9 +52,8 @@ for my $p (keys %scanlib::packagelist) { $pendingcount++ if ($scanlib::bugs{$nr} =~ m/^\[[^]]*P/); $patchcount++ if ($scanlib::bugs{$nr} =~ m/^\[[^]]*\+/); $ignorecount++ if ($scanlib::bugs{$nr} =~ m/^\[[^]]*I/); - $nottestingcount++ if ($scanlib::bugs{$nr} =~ m/ \[[^]]*X/); $worrycount++ if (scanlib::check_worry($scanlib::bugs{$nr})); } } -printf("%d %d %d 0 %d %d %d\n", $total, $pendingcount, $patchcount, $ignorecount, $nottestingcount, $worrycount); +printf("%d %d %d 0 %d 0 %d\n", $total, $pendingcount, $patchcount, $ignorecount, $worrycount);