# HG changeset patch # User Martin Geisler # Date 1230999321 -3600 # Node ID 551afd4a46917ea4434beccbb2d1bc7ffa948671 # Parent 930a2be7e875f034335c961142b65a3d06c76c5a churn: lowercase output This changes the continuously updated progress bar -- not something a script would rely on. diff -r 930a2be7e875 -r 551afd4a4691 hgext/churn.py --- 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'):