diff -r 18489e26d9a0 -r 7eb221b9af6c mercurial/error.py --- a/mercurial/error.py Fri Nov 20 13:24:45 2020 -0800 +++ b/mercurial/error.py Thu Nov 19 15:13:39 2020 -0800 @@ -259,13 +259,12 @@ __bytes__ = _tobytes -class ParseError(Hint, Exception): +class ParseError(Abort): """Raised when parsing config files and {rev,file}sets (msg[, pos])""" def __init__(self, message, location=None, hint=None): - self.message = message + super(ParseError, self).__init__(message, hint=hint) self.location = location - self.hint = hint # Pass the message and possibly location into the Exception constructor # to help code that looks for exc.args. if location is not None: