diff options
author | Petr Mladek <pmladek@suse.cz> | 2011-02-09 12:48:29 +0100 |
---|---|---|
committer | Petr Mladek <pmladek@suse.cz> | 2011-02-09 12:48:29 +0100 |
commit | a0c217c31bce7eb1fe554f7128061ed9ea8a0ccd (patch) | |
tree | 60e82f04e0469483967d911179d1d778a7e735d8 /bin | |
parent | b9e228347b2ef07d3b0907a7268f2a1ee085e6f3 (diff) |
lo-commit-stat: sort modules alphabeticaly
Diffstat (limited to 'bin')
-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"; |