hgext/mq.py
changeset 25411 d298805fb639
parent 25186 80c5b2666a96
child 25453 d3a00fc3680f
--- a/hgext/mq.py	Tue Jun 02 15:04:39 2015 -0400
+++ b/hgext/mq.py	Mon Jun 01 18:05:38 2015 +0000
@@ -1526,7 +1526,7 @@
                                    "managed by this patch queue"))
             if not repo[self.applied[-1].node].mutable():
                 raise util.Abort(
-                    _("popping would remove an immutable revision"),
+                    _("popping would remove a public revision"),
                     hint=_('see "hg help phases" for details'))
 
             # we know there are no local changes, so we can make a simplified
@@ -1597,7 +1597,7 @@
             if repo.changelog.heads(top) != [top]:
                 raise util.Abort(_("cannot refresh a revision with children"))
             if not repo[top].mutable():
-                raise util.Abort(_("cannot refresh immutable revision"),
+                raise util.Abort(_("cannot refresh public revision"),
                                  hint=_('see "hg help phases" for details'))
 
             cparents = repo.changelog.parents(top)