diff -r 0693dc0b44fb -r bfb0ed91bb5e mercurial/verify.py --- a/mercurial/verify.py Tue Jun 01 09:05:23 2021 +0200 +++ b/mercurial/verify.py Tue Jun 01 09:05:53 2021 +0200 @@ -361,12 +361,8 @@ # code (eg: hash verification, filename are ordered, etc.) mfdelta = mfl.get(dir, n).read() except Exception as inst: - self._exc( - lr, - _(b"reading full manifest %s") % short(n), - inst, - label, - ) + msg = _(b"reading full manifest %s") % short(n) + self._exc(lr, msg, inst, label) if not dir: progress.complete()