##// END OF EJS Templates
i18n: the message should not contain '\r'...
Benoit Boissinot -
r8085:404a2c31 default
parent child Browse files
Show More
@@ -80,7 +80,7 b' def countrate(ui, repo, amap, *pats, **o'
80 80 newpct = int(100.0 * count / max(len(repo), 1))
81 81 if pct < newpct:
82 82 pct = newpct
83 ui.write(_("\rgenerating stats: %d%%") % pct)
83 ui.write("\r" + _("generating stats: %d%%") % pct)
84 84 sys.stdout.flush()
85 85
86 86 if opts.get('progress'):
General Comments 0
You need to be logged in to leave comments. Login now