hgext/rebase.py
changeset 25411 d298805fb639
parent 25186 80c5b2666a96
child 25660 328739ea70c3
--- a/hgext/rebase.py	Tue Jun 02 15:04:39 2015 -0400
+++ b/hgext/rebase.py	Mon Jun 01 18:05:38 2015 +0000
@@ -330,7 +330,7 @@
 
             root = min(rebaseset)
             if not keepf and not repo[root].mutable():
-                raise util.Abort(_("can't rebase immutable changeset %s")
+                raise util.Abort(_("can't rebase public changeset %s")
                                  % repo[root],
                                  hint=_('see "hg help phases" for details'))
 
@@ -869,7 +869,7 @@
     immutable = [d for d in dstates if not repo[d].mutable()]
     cleanup = True
     if immutable:
-        repo.ui.warn(_("warning: can't clean up immutable changesets %s\n")
+        repo.ui.warn(_("warning: can't clean up public changesets %s\n")
                      % ', '.join(str(repo[r]) for r in immutable),
                      hint=_('see "hg help phases" for details'))
         cleanup = False