##// END OF EJS Templates
churn: lowercase output...
Martin Geisler -
r7626:551afd4a default
parent child Browse files
Show More
@@ -79,7 +79,7 b' def countrate(ui, repo, amap, *pats, **o'
79 newpct = int(100.0 * count / max(len(repo), 1))
79 newpct = int(100.0 * count / max(len(repo), 1))
80 if pct < newpct:
80 if pct < newpct:
81 pct = newpct
81 pct = newpct
82 ui.write(_("\rGenerating stats: %d%%") % pct)
82 ui.write(_("\rgenerating stats: %d%%") % pct)
83 sys.stdout.flush()
83 sys.stdout.flush()
84
84
85 if opts.get('progress'):
85 if opts.get('progress'):
General Comments 0
You need to be logged in to leave comments. Login now