# HG changeset patch # User Martin von Zweigbergk # Date 1634073161 25200 # Node ID d8cff8564f5a4768d7bf7d55270adf3982a3affd # Parent 1895027c5051f4365e583ad0e39e721c3e878c8f chistedit: rename a confusingly named variable I would expect `ctxs` contain instances of some class from the `context` module but it actually contains instances of `histeditrule`. Differential Revision: https://phab.mercurial-scm.org/D11653 diff -r 1895027c5051 -r d8cff8564f5a hgext/histedit.py --- 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: