diff -r ee7791f2515b -r 7e55ca658e4b mercurial/dagop.py --- a/mercurial/dagop.py Sat Jan 26 12:21:20 2019 +0800 +++ b/mercurial/dagop.py Sat Jan 26 12:24:04 2019 +0800 @@ -221,7 +221,7 @@ Scan ends at the stopdepth (exlusive) if specified. Revisions found earlier than the startdepth are omitted. """ - if startdepth is None and (stopdepth is None or stopdepth == maxlogdepth): + if startdepth is None and (stopdepth is None or stopdepth >= maxlogdepth): gen = _genrevdescendants(repo, revs, followfirst) else: gen = _genrevdescendantsofdepth(repo, revs, followfirst,