rebase: drop uppercase in abort message stable
authorWagner Bruna <wbruna@softwareexpress.com.br>
Fri, 20 Jan 2012 12:04:45 -0200
branchstable
changeset 15945 cd42f77d30c4
parent 15944 f19d5c852f9b
child 15946 b9c7ac405757
rebase: drop uppercase in abort message
hgext/rebase.py
tests/test-rebase-scenario-global.t
--- 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]