comparison mercurial/revset.py @ 38492:b23ef2f06d98

revset: remove orphan i18n comment from ancestor()
author Yuya Nishihara <yuya@tcha.org>
date Sat, 16 Jun 2018 23:12:41 +0900
parents 72621094505f
children 626d29c6e987
comparison
equal deleted inserted replaced
38491:8d9d0d30cfcc 38492:b23ef2f06d98
307 307
308 Accepts 0 or more changesets. 308 Accepts 0 or more changesets.
309 Will return empty list when passed no args. 309 Will return empty list when passed no args.
310 Greatest common ancestor of a single changeset is that changeset. 310 Greatest common ancestor of a single changeset is that changeset.
311 """ 311 """
312 # i18n: "ancestor" is a keyword
313 l = getlist(x) 312 l = getlist(x)
314 rl = fullreposet(repo) 313 rl = fullreposet(repo)
315 anc = None 314 anc = None
316 315
317 # (getset(repo, rl, i) for i in l) generates a list of lists 316 # (getset(repo, rl, i) for i in l) generates a list of lists