mercurial/commandserver.py
changeset 45682 d2e1dcd4490d
parent 45058 f43bc4ce0d69
child 45942 89a2afe31e82
--- a/mercurial/commandserver.py	Thu Oct 08 15:35:44 2020 -0700
+++ b/mercurial/commandserver.py	Thu Oct 08 13:37:31 2020 -0700
@@ -500,7 +500,7 @@
         # handle exceptions that may be raised by command server. most of
         # known exceptions are caught by dispatch.
         except error.Abort as inst:
-            ui.error(_(b'abort: %s\n') % inst)
+            ui.error(_(b'abort: %s\n') % inst.message)
         except IOError as inst:
             if inst.errno != errno.EPIPE:
                 raise