##// END OF EJS Templates
revset-children: remove usage of `set()`...
Pierre-Yves David -
r22868:88ad04bc default
parent child Browse files
Show More
@@ -572,7 +572,7 b' def children(repo, subset, x):'
572 """``children(set)``
572 """``children(set)``
573 Child changesets of changesets in set.
573 Child changesets of changesets in set.
574 """
574 """
575 s = getset(repo, baseset(repo), x).set()
575 s = getset(repo, baseset(repo), x)
576 cs = _children(repo, subset, s)
576 cs = _children(repo, subset, s)
577 return subset & cs
577 return subset & cs
578
578
General Comments 0
You need to be logged in to leave comments. Login now