Mercurial > hg-stable
diff mercurial/chgserver.py @ 47304:7a769ac49637
errors: catch the new Error class in scmutil and chgserver
Differential Revision: https://phab.mercurial-scm.org/D10739
author | Martin von Zweigbergk <martinvonz@google.com> |
---|---|
date | Tue, 18 May 2021 21:45:59 -0700 |
parents | 33c0c25d0b0f |
children | 227bbb078c2c |
line wrap: on
line diff
--- a/mercurial/chgserver.py Tue May 18 21:32:12 2021 -0700 +++ b/mercurial/chgserver.py Tue May 18 21:45:59 2021 -0700 @@ -515,7 +515,7 @@ if inst.hint: self.ui.error(_(b"(%s)\n") % inst.hint) errorraised = True - except error.Abort as inst: + except error.Error as inst: if inst.detailed_exit_code is not None: detailed_exit_code = inst.detailed_exit_code self.ui.error(inst.format())