Mercurial > hg
changeset 3061:713de12d9ce5
merge crew with hg-churn
author | Benoit Boissinot <benoit.boissinot@ens-lyon.org> |
---|---|
date | Tue, 05 Sep 2006 11:33:47 +0200 |
parents | 3dab573a4330 (current diff) 50e0392d51df (diff) |
children | 5e39ad2c8b52 |
files | |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/contrib/churn.py Thu Aug 24 16:12:23 2006 -0500 +++ b/contrib/churn.py Tue Sep 05 11:33:47 2006 +0200 @@ -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]