]> git.donarmstrong.com Git - bugscan.git/blobdiff - bugscan
Oops, a bug there in the space-to-array conversion.
[bugscan.git] / bugscan
diff --git a/bugscan b/bugscan
index 5a297737149f3ff80c6f7694515c0b1fe0833650..c78573f1576eddfc4f20733197cbd438c298c925 100755 (executable)
--- a/bugscan
+++ b/bugscan
@@ -27,10 +27,11 @@ for my $p (keys %scanlib::packagelist) {
        } else {
            $section = $scanlib::debbugssection{$p};
        }
-       print "$p $section $scanlib::maintainer{$p}";
-       for my $b (split(/ /, $scanlib::packagelist{$p})) {
+       print "$p $section $scanlib::maintainer{$p}\n";
+       for my $b (@{$scanlib::packagelist{$p}}) {
                print "$scanlib::bugs{$b}\n";
        }
+       print "\n";
 }
 
 exit 0;