Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Switch order of revision(s) and output
  • Loading branch information
MasterDuke17 committed Jul 15, 2016
1 parent c763c0c commit 111cebb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion committable.pl
Expand Up @@ -87,7 +87,7 @@ sub process_message {
push @{$outputs{$out}}, substr($commit, 0, 7);
}

$msg_response .= join("\n", map { "$_=" . join(',', @{$outputs{$_}}) } keys %outputs);
$msg_response .= join("\n", map { join(',', @{$outputs{$_}}) . "=$_" } keys %outputs);
} else {
$msg_response = help();
}
Expand Down

0 comments on commit 111cebb

Please sign in to comment.