diff options
-rwxr-xr-x | bin/lo-commit-stat | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/lo-commit-stat b/bin/lo-commit-stat index 191842fce57b..26a2ba7d5b5f 100755 --- a/bin/lo-commit-stat +++ b/bin/lo-commit-stat @@ -180,7 +180,7 @@ sub print_weekly_stat($) { my $pdata = shift; - foreach my $piece (keys %{$pdata}) { + foreach my $piece ( sort { $a cmp $b } keys %{$pdata}) { # check if this peice has any entries at all if ( %{$pdata->{$piece}} ) { print "+ $piece\n"; |