Mercurial > public > mercurial-scm > hg
diff hgext/mq.py @ 16867:1093ad1e8903
revlog: descendants(*revs) becomes descendants(revs) (API)
Once again making the API more rational, as with ancestors.
author | Bryan O'Sullivan <bryano@fb.com> |
---|---|
date | Fri, 01 Jun 2012 12:45:16 -0700 |
parents | 6403fdd716fe |
children | 4b02d7006169 |
line wrap: on
line diff
--- a/hgext/mq.py Fri Jun 01 12:37:18 2012 -0700 +++ b/hgext/mq.py Fri Jun 01 12:45:16 2012 -0700 @@ -2963,7 +2963,7 @@ if not revs: raise util.Abort(_('empty revision set')) - descendants = set(cl.descendants(*revs)) + descendants = set(cl.descendants(revs)) strippedrevs = revs.union(descendants) roots = revs.difference(descendants)