Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Missed one occurrence of LIMIT
  • Loading branch information
AlexDaniel committed Jul 15, 2016
1 parent 5671d64 commit b04f37b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion committable.pl
Expand Up @@ -56,7 +56,7 @@ sub process_message {

@commits = split("\n", $result);
my $num_commits = scalar @commits;
return "Too many commits ($num_commits) in range, you're only allowed 10" if ($num_commits > LIMIT);
return "Too many commits ($num_commits) in range, you're only allowed " . LIMIT if ($num_commits > LIMIT);
} else {
@commits = $config;
}
Expand Down

0 comments on commit b04f37b

Please sign in to comment.