[Request] [+ ] D11653: chistedit: rename a confusingly named variable
martinvonz (Martin von Zweigbergk)
phabricator at mercurial-scm.org
Tue Oct 12 21:31:28 UTC 2021
martinvonz created this revision.
Herald added a reviewer: durin42.
Herald added a reviewer: hg-reviewers.
Herald added a subscriber: mercurial-patches.
REVISION SUMMARY
I would expect `ctxs` contain instances of some class from the
`context` module but it actually contains instances of `histeditrule`.
REPOSITORY
rHG Mercurial
BRANCH
default
REVISION DETAIL
https://phab.mercurial-scm.org/D11653
AFFECTED FILES
hgext/histedit.py
CHANGE DETAILS
diff --git a/hgext/histedit.py b/hgext/histedit.py
--- a/hgext/histedit.py
+++ b/hgext/histedit.py
@@ -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:
To: martinvonz, durin42, #hg-reviewers
Cc: mercurial-patches, mercurial-devel
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mercurial-scm.org/pipermail/mercurial-patches/attachments/20211012/0860db07/attachment.html>
More information about the Mercurial-patches
mailing list