[PATCH] rebase: abort message should appear even with --quiet

timeless timeless at gmail.com
Tue Oct 26 06:49:24 CDT 2010


# HG changeset patch
# User timeless <timeless at gmail.com>
# Date 1288093318 -10800
# Node ID 0009d6d29ab4bc7706d8417b31fce4f57bd01c4b
# Parent  850617e3a5cc060e19d03ef5601985f6920823c9
rebase: abort message should appear even with --quiet

diff --git a/hgext/rebase.py b/hgext/rebase.py
--- a/hgext/rebase.py
+++ b/hgext/rebase.py
@@ -451,7 +451,7 @@ def abort(repo, originalwd, target, stat
             # no backup of rebased cset versions needed
             repair.strip(repo.ui, repo, repo[strippoint].node())
         clearstatus(repo)
-        repo.ui.status(_('rebase aborted\n'))
+        repo.ui.warn(_('rebase aborted\n'))
         return 0
 
 def buildstate(repo, dest, src, base, detach):


More information about the Mercurial-devel mailing list