X-Git-Url: https://git.donarmstrong.com/?p=bugscan.git;a=blobdiff_plain;f=scanlib.pm;h=a9c51964a91c3abdb9b6c9a1c03241124a6fc3be;hp=54da632bab3e2041c2a9578af3443096f6283fe3;hb=f75e34fa9be4f762c2b3844622a753237bc89365;hpb=044edd0fbd74defd1afe209d162882da42f42224 diff --git a/scanlib.pm b/scanlib.pm index 54da632..a9c5196 100644 --- a/scanlib.pm +++ b/scanlib.pm @@ -6,7 +6,6 @@ # which was based on an unknown other script. # # Global variables: -# %exclude - list of bugreports to exclude from the report # %maintainer - map from packagename to maintainer # %section - map from packagename to section in the FTP-site # %packagelist - map from packagename to bugreports @@ -23,7 +22,7 @@ use warnings; require bugcfg; package scanlib; -our (%exclude,%maintainer,%section,%packagelist,%debbugssection,%bugs); +our (%maintainer,%section,%packagelist,%debbugssection,%bugs); # Read the list of maintainer @@ -152,8 +151,6 @@ sub scanspooldir() { closedir(DIR); for $f (@list) { - next if $exclude{$f}; # Check the list of bugs to skip - my $bug = Debbugs::Status::read_bug(summary => "$f.summary"); next if (!defined($bug));