hgext/histedit.py
changeset 29887 6d66200bff3b
parent 29881 12f8bef59bfa
child 29970 5ad164698626
--- a/hgext/histedit.py	Tue Aug 30 13:33:48 2016 -0400
+++ b/hgext/histedit.py	Tue Aug 30 13:13:50 2016 -0400
@@ -789,9 +789,10 @@
     def _verifynodeconstraints(self, prev, expected, seen):
         # base can only be use with a node not in the edited set
         if self.node in expected:
-            msg = _('%s "%s" changeset was not an edited list candidate')
-            raise error.ParseError(msg % (self.verb, node.short(self.node)),
-                                   hint=_('only use listed changesets'))
+            msg = _('%s "%s" changeset was an edited list candidate')
+            raise error.ParseError(
+                msg % (self.verb, node.short(self.node)),
+                hint=_('base must only use unlisted changesets'))
 
 @action(['_multifold'],
         _(