##// END OF EJS Templates
chistedit: rename a confusingly named variable...
Martin von Zweigbergk -
r49029:d8cff856 default
parent child Browse files
Show More
@@ -1716,11 +1716,11 b' def _chistedit(ui, repo, freeargs, opts)'
1716 _(b'%s is not an ancestor of working directory') % short(root)
1716 _(b'%s is not an ancestor of working directory') % short(root)
1717 )
1717 )
1718
1718
1719 ctxs = []
1719 rules = []
1720 for i, r in enumerate(revs):
1720 for i, r in enumerate(revs):
1721 ctxs.append(histeditrule(ui, repo[r], i))
1721 rules.append(histeditrule(ui, repo[r], i))
1722 with util.with_lc_ctype():
1722 with util.with_lc_ctype():
1723 rc = curses.wrapper(functools.partial(_chisteditmain, repo, ctxs))
1723 rc = curses.wrapper(functools.partial(_chisteditmain, repo, rules))
1724 curses.echo()
1724 curses.echo()
1725 curses.endwin()
1725 curses.endwin()
1726 if rc is False:
1726 if rc is False:
General Comments 0
You need to be logged in to leave comments. Login now