Mercurial > public > mercurial-scm > hg-stable
diff contrib/churn.py @ 3792:4670470b97bd
Fix revrange() call in the churn contrib
author | Edouard Gomez <ed.gomez@free.fr> |
---|---|
date | Tue, 05 Dec 2006 14:58:32 +0100 |
parents | 53e843840349 |
children | abaee83ce0a6 |
line wrap: on
line diff
--- a/contrib/churn.py Tue Dec 05 11:23:37 2006 +0100 +++ b/contrib/churn.py Tue Dec 05 14:58:32 2006 +0100 @@ -150,7 +150,7 @@ amap = get_aliases(f) f.close() - revs = [int(r) for r in cmdutil.revrange(ui, repo, opts['rev'])] + revs = [int(r) for r in cmdutil.revrange(repo, opts['rev'])] revs.sort() stats = gather_stats(ui, repo, amap, revs, opts.get('progress'))