Mercurial > public > mercurial-scm > hg
diff mercurial/verify.py @ 39489:f1186c292d03
verify: make output less confusing (issue5924)
output before: "500 files, 2035 changesets, 2622 total revisions"
output after: "checked 2035 changesets with 2622 changes to 500 files"
new one was suggested in the comments inside the issue.
Differential Revision: https://phab.mercurial-scm.org/D4476
author | Meirambek Omyrzak <meirambek77@gmail.com> |
---|---|
date | Wed, 05 Sep 2018 01:19:48 +0300 |
parents | 73cf21b2e8a6 |
children | b63dee7bd0d9 |
line wrap: on
line diff
--- a/mercurial/verify.py Tue Sep 04 21:28:28 2018 +0200 +++ b/mercurial/verify.py Wed Sep 05 01:19:48 2018 +0300 @@ -153,8 +153,8 @@ totalfiles, filerevisions = self._verifyfiles(filenodes, filelinkrevs) - ui.status(_("%d files, %d changesets, %d total revisions\n") % - (totalfiles, len(repo.changelog), filerevisions)) + ui.status(_("checked %d changesets with %d changes to %d files\n") % + (len(repo.changelog), filerevisions, totalfiles)) if self.warnings: ui.warn(_("%d warnings encountered!\n") % self.warnings) if self.fncachewarned: