Mercurial > public > mercurial-scm > hg-stable
diff hgext/churn.py @ 10700:b2b71c304de0
progress: use a verb in present participle
author | Martin Geisler <mg@lazybytes.net> |
---|---|
date | Mon, 15 Mar 2010 18:40:00 +0100 |
parents | 4ba41eebb3a8 |
children | a6ac91c313af |
line wrap: on
line diff
--- a/hgext/churn.py Mon Mar 15 18:36:11 2010 +0100 +++ b/hgext/churn.py Mon Mar 15 18:40:00 2010 +0100 @@ -75,12 +75,12 @@ rate[key] = [r + l for r, l in zip(rate.get(key, (0, 0)), lines)] state['count'] += 1 - ui.progress(_('churning changes'), state['count'], total=len(repo)) + ui.progress(_('analyzing'), state['count'], total=len(repo)) for ctx in cmdutil.walkchangerevs(repo, m, opts, prep): continue - ui.progress(_('churning changes'), None) + ui.progress(_('analyzing'), None) return rate