Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
[tools] fix typo and output sorted keys
  • Loading branch information
perlpilot committed Apr 29, 2010
1 parent ed321b4 commit e16cf45
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tools/contributors.pl
Expand Up @@ -21,7 +21,7 @@
while ($msg =~ /([^\s()]+)\+\+/g) {
$contrib{nick_to_name($1)}++;
}
while ($msg =~ /(couretsy by:?)\s*(\S.*)/i) {
while ($msg =~ /(courtesy by:?)\s*(\S.*)/i) {
$contrib{nick_to_name($1)}++;
}
}
Expand Down Expand Up @@ -67,7 +67,7 @@ sub nick_to_name_from_CREDITS {
}
}
close $f;
use Data::Dumper; print Dumper \%nicks;
use Data::Dumper; $Data::Dumper::Sortkeys = 1; print Dumper \%nicks;
return \%nicks;
}

Expand Down

0 comments on commit e16cf45

Please sign in to comment.