changeset 15945:cd42f77d30c4 stable

rebase: drop uppercase in abort message
author Wagner Bruna <wbruna@softwareexpress.com.br>
date Fri, 20 Jan 2012 12:04:45 -0200
parents f19d5c852f9b
children b9c7ac405757
files hgext/rebase.py tests/test-rebase-scenario-global.t
diffstat 2 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/hgext/rebase.py	Fri Dec 02 18:20:32 2011 +0100
+++ b/hgext/rebase.py	Fri Jan 20 12:04:45 2012 -0200
@@ -210,7 +210,7 @@
                       " unrebased descendants"),
                     hint=_('use --keep to keep original changesets'))
             elif not keepf and not repo[root].mutable():
-                raise util.Abort(_("Can't rebase immutable changeset %s")
+                raise util.Abort(_("can't rebase immutable changeset %s")
                                  % repo[root],
                                  hint=_('see hg help phases for details'))
             else:
--- a/tests/test-rebase-scenario-global.t	Fri Dec 02 18:20:32 2011 +0100
+++ b/tests/test-rebase-scenario-global.t	Fri Jan 20 12:04:45 2012 -0200
@@ -277,7 +277,7 @@
 
   $ hg pull --config phases.publish=True -q -r 6 . # update phase of 6
   $ hg rebase -d 5 -b 6
-  abort: Can't rebase immutable changeset e1c4361dd923
+  abort: can't rebase immutable changeset e1c4361dd923
   (see hg help phases for details)
   [255]