hgext/histedit.py
changeset 24773 090da03361c5
parent 24772 8f6494eb16eb
child 24774 a9d63d87b837
--- a/hgext/histedit.py	Sat Apr 04 02:12:24 2015 -0700
+++ b/hgext/histedit.py	Sat Apr 04 02:12:53 2015 -0700
@@ -542,21 +542,20 @@
         middlecommits = newcommits.copy()
         middlecommits.discard(ctx.node())
 
-        foldopts = {}
-        if isinstance(self, rollup):
-            foldopts['rollup'] = True
+        return self.finishfold(repo.ui, repo, parentctx, rulectx, ctx.node(),
+                               middlecommits)
 
-        return self.finishfold(repo.ui, repo, parentctx, rulectx, ctx.node(),
-                               foldopts, middlecommits)
+    def skipprompt(self):
+        return False
 
-    def finishfold(self, ui, repo, ctx, oldctx, newnode, opts, internalchanges):
+    def finishfold(self, ui, repo, ctx, oldctx, newnode, internalchanges):
         parent = ctx.parents()[0].node()
         hg.update(repo, parent)
         ### prepare new commit data
-        commitopts = opts.copy()
+        commitopts = {}
         commitopts['user'] = ctx.user()
         # commit message
-        if opts.get('rollup'):
+        if self.skipprompt():
             newmessage = ctx.description()
         else:
             newmessage = '\n***\n'.join(
@@ -591,7 +590,8 @@
         return repo[n], replacements
 
 class rollup(fold):
-    pass
+    def skipprompt(self):
+        return True
 
 class drop(histeditaction):
     def run(self):