branch | stable |
changeset 51611 | 2a27b921cd91 |
parent 51610 | dcb00d5c397a |
child 51860 | 1c5810ce737e |
--- a/mercurial/admin/verify.py Mon May 06 12:31:29 2024 +0200 +++ b/mercurial/admin/verify.py Mon May 06 16:16:15 2024 +0200 @@ -38,7 +38,7 @@ is_narrow = requirements.NARROW_REQUIREMENT in repo.requirements narrow_matcher = repo.narrowmatch() if is_narrow else None for err in repo.dirstate.verify(m1, m2, parent1, narrow_matcher): - ui.warn(err[0] % err[1:]) + ui.warn(err) errors += 1 return errors