##// END OF EJS Templates
clfilter: remove the last usage of `visibleheads`...
Pierre-Yves David -
r18283:ac25d759 default
parent child Browse files
Show More
@@ -115,7 +115,7 b' def findcommonoutgoing(repo, other, only'
115 og.missingheads = onlyheads or repo.heads()
115 og.missingheads = onlyheads or repo.heads()
116 elif onlyheads is None:
116 elif onlyheads is None:
117 # use visible heads as it should be cached
117 # use visible heads as it should be cached
118 og.missingheads = visibleheads(repo)
118 og.missingheads = repo.filtered("unserved").heads()
119 og.excluded = [ctx.node() for ctx in repo.set('secret() or extinct()')]
119 og.excluded = [ctx.node() for ctx in repo.set('secret() or extinct()')]
120 else:
120 else:
121 # compute common, missing and exclude secret stuff
121 # compute common, missing and exclude secret stuff
General Comments 0
You need to be logged in to leave comments. Login now