X-Git-Url: https://git.donarmstrong.com/?p=bugscan.git;a=blobdiff_plain;f=bugcounts;h=15455ab6e8f9bb9399da0e9bc971a234b0056f1a;hp=d7adb4d2ea4099f3e7f6781f8818274429f812eb;hb=5b1d396f8f09c314859583a8f8b96876e043f2cd;hpb=9199c4eac048f4443133023f938885f95ea7251b diff --git a/bugcounts b/bugcounts index d7adb4d..15455ab 100755 --- a/bugcounts +++ b/bugcounts @@ -1,5 +1,5 @@ #! /usr/bin/perl -# vim: ts=4 sw=4 nowrap +# vim: ts=8 sw=8 nowrap # Generate some counts for the bugreports @@ -49,7 +49,8 @@ for my $bug (values %scanlib::bugs) { $total++; $pendingcount++ if ($bug->{'pending'}); $patchcount++ if ($bug->{'patch'}); - $ignorecount++ if ($bug->{'sarge-ignore'} || $bug->{'etch-ignore'}); + $ignorecount++ if ($bug->{$debian_releases->{stable}.'-ignore'} || + $bug->{$debian_releases->{testing}.'-ignore'}); $worrycount++ if (scanlib::check_worry($bug)); $stablecount++ if (scanlib::check_worry_stable($bug)); }