Mercurial > hg-stable
changeset 5989:a7817ad608ea
added \r for progress counting in churn extension
author | Armin Ronacher <armin.ronacher@active-4.com> |
---|---|
date | Thu, 31 Jan 2008 23:42:21 +0100 |
parents | 9f1e6ab76069 |
children | 71d675f4b1f8 |
files | contrib/churn.py |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/contrib/churn.py Thu Jan 31 14:44:19 2008 -0600 +++ b/contrib/churn.py Thu Jan 31 23:42:21 2008 +0100 @@ -127,11 +127,11 @@ if progress: nr_revs = max(nr_revs, 1) if int(100.0*(cur_rev - 1)/nr_revs) < int(100.0*cur_rev/nr_revs): - ui.write("%d%%.." % (int(100.0*cur_rev/nr_revs),)) + ui.write("\rGnerating stats: %d%%" % (int(100.0*cur_rev/nr_revs),)) sys.stdout.flush() if progress: - ui.write("done\n") + ui.write("\r") sys.stdout.flush() return stats