D6798: flagutil: make the error class used by the mixin configurable
marmoute (Pierre-Yves David)
phabricator at mercurial-scm.org
Sat Sep 7 17:00:21 UTC 2019
Closed by commit rHG7907008a0bb5: flagutil: make the error class used by the mixin configurable (authored by marmoute).
This revision was automatically updated to reflect the committed changes.
REPOSITORY
rHG Mercurial
CHANGES SINCE LAST UPDATE
https://phab.mercurial-scm.org/D6798?vs=16403&id=16436
CHANGES SINCE LAST ACTION
https://phab.mercurial-scm.org/D6798/new/
REVISION DETAIL
https://phab.mercurial-scm.org/D6798
AFFECTED FILES
mercurial/revlogutils/flagutil.py
CHANGE DETAILS
diff --git a/mercurial/revlogutils/flagutil.py b/mercurial/revlogutils/flagutil.py
--- a/mercurial/revlogutils/flagutil.py
+++ b/mercurial/revlogutils/flagutil.py
@@ -87,6 +87,8 @@
See the documentation of the ``_processflags`` method for details.
"""
+ _flagserrorclass = error.RevlogError
+
def _processflags(self, text, flags, operation, raw=False):
"""Inspect revision data flags and applies transforms defined by
registered flag processors.
@@ -117,8 +119,8 @@
operation)
# Check all flags are known.
if flags & ~REVIDX_KNOWN_FLAGS:
- raise error.RevlogError(_("incompatible revision flag '%#x'") %
- (flags & ~REVIDX_KNOWN_FLAGS))
+ raise self._flagserrorclass(_("incompatible revision flag '%#x'") %
+ (flags & ~REVIDX_KNOWN_FLAGS))
validatehash = True
# Depending on the operation (read or write), the order might be
# reversed due to non-commutative transforms.
@@ -134,7 +136,7 @@
if flag not in self._flagprocessors:
message = _("missing processor for flag '%#x'") % (flag)
- raise error.RevlogError(message)
+ raise self._flagserrorclass(message)
processor = self._flagprocessors[flag]
if processor is not None:
To: marmoute, yuja, durin42, #hg-reviewers, indygreg
Cc: mercurial-devel
More information about the Mercurial-devel
mailing list