mercurial/commandserver.py
changeset 38768 afc4ad706f9c
parent 38291 c07424ec633c
child 39818 24e493ec2229
--- a/mercurial/commandserver.py	Thu Jul 19 15:21:28 2018 -0400
+++ b/mercurial/commandserver.py	Thu Jul 19 23:22:05 2018 -0700
@@ -353,7 +353,7 @@
         # handle exceptions that may be raised by command server. most of
         # known exceptions are caught by dispatch.
         except error.Abort as inst:
-            ui.warn(_('abort: %s\n') % inst)
+            ui.error(_('abort: %s\n') % inst)
         except IOError as inst:
             if inst.errno != errno.EPIPE:
                 raise