##// END OF EJS Templates
discovery: fix invalid comment about extinct being ignored
Patrick Mezard -
r17254:0deb66d4 stable
parent child Browse files
Show More
@@ -115,7 +115,6 b' def findcommonoutgoing(repo, other, only'
115 elif onlyheads is None:
115 elif onlyheads is None:
116 # use visible heads as it should be cached
116 # use visible heads as it should be cached
117 og.missingheads = visibleheads(repo)
117 og.missingheads = visibleheads(repo)
118 # extinct changesets are silently ignored
119 og.excluded = [ctx.node() for ctx in repo.set('secret() or extinct()')]
118 og.excluded = [ctx.node() for ctx in repo.set('secret() or extinct()')]
120 else:
119 else:
121 # compute common, missing and exclude secret stuff
120 # compute common, missing and exclude secret stuff
General Comments 0
You need to be logged in to leave comments. Login now