verify: use some intermediate variables instead of a multi-liner
This is shorter and easier to read as the indentation remains the same.
Differential Revision: https://phab.mercurial-scm.org/D10813
--- 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()