diff -r 3b5cd6f13dcc -r 3f0744eeaeaf mercurial/repoview.py --- a/mercurial/repoview.py Sat May 16 14:31:03 2015 -0400 +++ b/mercurial/repoview.py Sat May 16 14:30:07 2015 -0400 @@ -196,7 +196,7 @@ Secret and hidden changeset should not pretend to be here.""" assert not repo.changelog.filteredrevs # fast check to avoid revset call on huge repo - if util.any(repo._phasecache.phaseroots[1:]): + if any(repo._phasecache.phaseroots[1:]): getphase = repo._phasecache.phase maymutable = filterrevs(repo, 'base') return frozenset(r for r in maymutable if getphase(repo, r))