D6451: verify: use self._err not self.err, it changed in 7eaf4b1ac2a3

spectral (Kyle Lippincott) phabricator at mercurial-scm.org
Wed May 29 08:54:49 EDT 2019


This revision was automatically updated to reflect the committed changes.
Closed by commit rHG91452f62dd53: verify: use self._err not self.err, it changed in 7eaf4b1ac2a3 (authored by spectral, committed by ).

REPOSITORY
  rHG Mercurial

CHANGES SINCE LAST UPDATE
  https://phab.mercurial-scm.org/D6451?vs=15279&id=15282

REVISION DETAIL
  https://phab.mercurial-scm.org/D6451

AFFECTED FILES
  mercurial/verify.py

CHANGE DETAILS

diff --git a/mercurial/verify.py b/mercurial/verify.py
--- a/mercurial/verify.py
+++ b/mercurial/verify.py
@@ -97,9 +97,9 @@
 
         d = obj.checksize()
         if d[0]:
-            self.err(None, _("data length off by %d bytes") % d[0], name)
+            self._err(None, _("data length off by %d bytes") % d[0], name)
         if d[1]:
-            self.err(None, _("index contains %d extra bytes") % d[1], name)
+            self._err(None, _("index contains %d extra bytes") % d[1], name)
 
         if obj.version != revlog.REVLOGV0:
             if not self.revlogv1:



To: spectral, #hg-reviewers
Cc: mercurial-devel


More information about the Mercurial-devel mailing list