# HG changeset patch # User Benoit Boissinot # Date 1240223145 -7200 # Node ID 404a2c318e70ae4544a2114021889888dcef9f14 # Parent 5b3fee9c1f4dbe3fcdd86d45b314fe77e9e77c68 i18n: the message should not contain '\r' reported by bardy diff -r 5b3fee9c1f4d -r 404a2c318e70 hgext/churn.py --- a/hgext/churn.py Sun Apr 19 07:55:53 2009 -0400 +++ b/hgext/churn.py Mon Apr 20 12:25:45 2009 +0200 @@ -80,7 +80,7 @@ newpct = int(100.0 * count / max(len(repo), 1)) if pct < newpct: pct = newpct - ui.write(_("\rgenerating stats: %d%%") % pct) + ui.write("\r" + _("generating stats: %d%%") % pct) sys.stdout.flush() if opts.get('progress'):