]> git.donarmstrong.com Git - debbugs.git/commitdiff
fix typo
authorDon Armstrong <don@donarmstrong.com>
Mon, 9 Jun 2008 15:49:40 +0000 (08:49 -0700)
committerDon Armstrong <don@donarmstrong.com>
Mon, 9 Jun 2008 15:49:40 +0000 (08:49 -0700)
Debbugs/Common.pm

index 55aed532d4a1850f7672dfb9f542d4cf9e0dc299..f4a3f0cea33e70d78603d12c3bc2a62bbecc601e 100644 (file)
@@ -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);