error: make ParseError inherit from HintException
authortimeless <timeless@mozdev.org>
Wed, 23 Dec 2015 17:39:32 +0000
changeset 27516 1c1216182dc1
parent 27515 f8142cb77b1e
child 27517 c60a9c16ae25
error: make ParseError inherit from HintException
mercurial/dispatch.py
mercurial/error.py
--- a/mercurial/dispatch.py	Wed Dec 23 17:38:24 2015 +0000
+++ b/mercurial/dispatch.py	Wed Dec 23 17:39:32 2015 +0000
@@ -107,6 +107,8 @@
         return -1
     except error.ParseError as inst:
         _formatparse(ferr.write, inst)
+        if inst.hint:
+            ferr.write(_("(%s)\n") % inst.hint)
         return -1
 
     msg = ' '.join(' ' in a and repr(a) or a for a in req.args)
@@ -202,6 +204,8 @@
                 (inst.args[0], " ".join(inst.args[1])))
     except error.ParseError as inst:
         _formatparse(ui.warn, inst)
+        if inst.hint:
+            ui.warn(_("(%s)\n") % inst.hint)
         return -1
     except error.LockHeld as inst:
         if inst.errno == errno.ETIMEDOUT:
--- a/mercurial/error.py	Wed Dec 23 17:38:24 2015 +0000
+++ b/mercurial/error.py	Wed Dec 23 17:39:32 2015 +0000
@@ -81,7 +81,7 @@
 class OutOfBandError(HintException):
     """Exception raised when a remote repo reports failure"""
 
-class ParseError(Exception):
+class ParseError(HintException):
     """Raised when parsing config files and {rev,file}sets (msg[, pos])"""
 
 class UnknownIdentifier(ParseError):