Mercurial > hg-stable
changeset 7626:551afd4a4691
churn: lowercase output
This changes the continuously updated progress bar -- not something a
script would rely on.
author | Martin Geisler <mg@daimi.au.dk> |
---|---|
date | Sat, 03 Jan 2009 17:15:21 +0100 |
parents | 930a2be7e875 |
children | fb32ae9c76e7 |
files | hgext/churn.py |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/hgext/churn.py Mon Jan 12 17:51:57 2009 +0100 +++ b/hgext/churn.py Sat Jan 03 17:15:21 2009 +0100 @@ -79,7 +79,7 @@ newpct = int(100.0 * count / max(len(repo), 1)) if pct < newpct: pct = newpct - ui.write(_("\rGenerating stats: %d%%") % pct) + ui.write(_("\rgenerating stats: %d%%") % pct) sys.stdout.flush() if opts.get('progress'):