Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
declare loop variable $p
this hopefully unbreaks the evalbot
  • Loading branch information
FROGGS committed Apr 18, 2014
1 parent 0ef6d11 commit 28fad69
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion evalbot.pl
Expand Up @@ -201,7 +201,7 @@ package Evalbot;
}
my @combined;
foreach my $r (sort keys %by_rev) {
foreach $p (sort keys %{$by_rev{$r}}) {
foreach my $p (sort keys %{$by_rev{$r}}) {
my $s = $by_rev{$r}{$p};
$s = @$s > 1
? '{' . join(',', @$s) . '}'
Expand Down

0 comments on commit 28fad69

Please sign in to comment.