hgext/histedit.py
changeset 46103 3f82a915ab2a
parent 45942 89a2afe31e82
child 46104 6f8a94bbfba1
--- a/hgext/histedit.py	Thu Dec 10 14:03:46 2020 +0530
+++ b/hgext/histedit.py	Thu Dec 10 11:42:49 2020 -0500
@@ -799,10 +799,11 @@
         rulectx = repo[self.node]
         hg.update(repo, self.state.parentctxnode, quietempty=True)
         applychanges(repo.ui, repo, rulectx, {})
+        hint = _(b'to edit %s, `hg histedit --continue` after making changes')
         raise error.InterventionRequired(
-            _(b'Editing (%s), you may commit or record as needed now.')
+            _(b'Editing (%s), commit as needed now to split the change')
             % node.short(self.node),
-            hint=_(b'hg histedit --continue to resume'),
+            hint=hint % node.short(self.node),
         )
 
     def commiteditor(self):