hgext/histedit.py
changeset 48215 d8cff8564f5a
parent 48214 1895027c5051
child 48233 c820866c52f9
--- a/hgext/histedit.py	Tue Oct 12 14:28:51 2021 -0700
+++ b/hgext/histedit.py	Tue Oct 12 14:12:41 2021 -0700
@@ -1716,11 +1716,11 @@
                 _(b'%s is not an ancestor of working directory') % short(root)
             )
 
-        ctxs = []
+        rules = []
         for i, r in enumerate(revs):
-            ctxs.append(histeditrule(ui, repo[r], i))
+            rules.append(histeditrule(ui, repo[r], i))
         with util.with_lc_ctype():
-            rc = curses.wrapper(functools.partial(_chisteditmain, repo, ctxs))
+            rc = curses.wrapper(functools.partial(_chisteditmain, repo, rules))
         curses.echo()
         curses.endwin()
         if rc is False: