# HG changeset patch # User Pierre-Yves David # Date 2014-03-14 23:26:50 # Node ID 98d6c79540577a623f1ec04271ad8b3f9211c26e # Parent 3813a1dd9eb933d0cac98fb1a1315e4c631a203a getgraphlogrevs: do not convert smartset to baseset We are now sure that revs is a smartset. We remove the baseset call that would defeat any lazyness. diff --git a/mercurial/cmdutil.py b/mercurial/cmdutil.py --- a/mercurial/cmdutil.py +++ b/mercurial/cmdutil.py @@ -1650,7 +1650,6 @@ def getgraphlogrevs(repo, pats, opts): revs.reverse() if not revs: return [], None, None - revs = revset.baseset(revs) expr, filematcher = _makegraphlogrevset(repo, pats, opts, revs) if possiblyunsorted: revs.sort(reverse=True)