Mercurial > public > mercurial-scm > hg-stable
diff mercurial/verify.py @ 37410:a6651f5e2c78
verify: drop "revlog" from warning message
Not all stores may be backed by revlogs. Switch to a more generic
error message.
Differential Revision: https://phab.mercurial-scm.org/D3094
author | Gregory Szorc <gregory.szorc@gmail.com> |
---|---|
date | Wed, 04 Apr 2018 13:43:52 -0700 |
parents | 00f18dd1d3d6 |
children | 76d2115cb817 |
line wrap: on
line diff
--- a/mercurial/verify.py Wed Apr 04 10:16:08 2018 -0700 +++ b/mercurial/verify.py Wed Apr 04 13:43:52 2018 -0700 @@ -295,7 +295,7 @@ if not dir and subdirnodes: ui.progress(_('checking'), None) for f in sorted(storefiles): - self.warn(_("warning: orphan revlog '%s'") % f) + self.warn(_("warning: orphan data file '%s'") % f) return filenodes @@ -482,6 +482,6 @@ ui.progress(_('checking'), None) for f in sorted(storefiles): - self.warn(_("warning: orphan revlog '%s'") % f) + self.warn(_("warning: orphan data file '%s'") % f) return len(files), revisions