# HG changeset patch # User Patrick Mezard # Date 2012-07-27 08:16:20 # Node ID 0deb66d4ad81de52d03b5128839e260df7c99c4e # Parent 67f56ff5afcd8f0a37830cf3d8e8ad14bb213fab discovery: fix invalid comment about extinct being ignored diff --git a/mercurial/discovery.py b/mercurial/discovery.py --- a/mercurial/discovery.py +++ b/mercurial/discovery.py @@ -115,7 +115,6 @@ def findcommonoutgoing(repo, other, only elif onlyheads is None: # use visible heads as it should be cached og.missingheads = visibleheads(repo) - # extinct changesets are silently ignored og.excluded = [ctx.node() for ctx in repo.set('secret() or extinct()')] else: # compute common, missing and exclude secret stuff