From: Don Armstrong Date: Mon, 9 Jun 2008 15:49:40 +0000 (-0700) Subject: fix typo X-Git-Tag: release/2.6.0~488^2~47 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=f615776e3015c74230d453e431776c68475d481b;p=debbugs.git fix typo --- diff --git a/Debbugs/Common.pm b/Debbugs/Common.pm index 55aed532..f4a3f0ce 100644 --- a/Debbugs/Common.pm +++ b/Debbugs/Common.pm @@ -232,7 +232,7 @@ sub getmaintainers { for my $file (@config{qw(maintainer_file maintainer_file_override pseduo_maint_file)}) { next unless defined $file; my $maintfile = IO::File->new($file,'r') or - die "Unable to open maintainer file $file: $!"); + die "Unable to open maintainer file $file: $!"; while(<$maintfile>) { next unless m/^(\S+)\s+(\S.*\S)\s*$/; ($a,$b)=($1,$2);