author | Shun-ichi GOTO <shunichi.goto@gmail.com> |
Tue, 05 Sep 2006 12:40:45 +0900 | |
changeset 3060 | 50e0392d51df |
parent 3052 | 51083c31db04 |
child 3061 | 713de12d9ce5 |
contrib/churn.py | file | annotate | diff | comparison | revisions |
--- a/contrib/churn.py Mon Sep 04 16:02:25 2006 -0400 +++ b/contrib/churn.py Tue Sep 05 12:40:45 2006 +0900 @@ -156,7 +156,7 @@ # make a list of tuples (name, lines) and sort it in descending order ordered = stats.items() - ordered.sort(cmp=lambda x, y: cmp(y[1], x[1])) + ordered.sort(lambda x, y: cmp(y[1], x[1])) maximum = ordered[0][1]