Submitter | Yuya Nishihara |
---|---|
Date | June 25, 2017, 3:26 a.m. |
Message ID | <49f3b0640a146b5a6366.1498361174@mimosa> |
Download | mbox | patch |
Permalink | /patch/21686/ |
State | Accepted |
Headers | show |
Comments
Patch
diff --git a/mercurial/dagop.py b/mercurial/dagop.py --- a/mercurial/dagop.py +++ b/mercurial/dagop.py @@ -91,9 +91,7 @@ def _genrevdescendants(repo, revs, follo cut = None cl = repo.changelog - # XXX this should be 'parentset.min()' assuming 'parentset' is a - # smartset (and if it is not, it should.) - first = min(revs) + first = revs.min() nullrev = node.nullrev if first == nullrev: # Are there nodes with a null first parent and a non-null