mercurial/discovery.py
branchstable
changeset 15951 bd84fc0b5f64
parent 15932 4154338f0bc0
child 15955 5a14f48d6b9a
equal deleted inserted replaced
15950:27f56b73522c 15951:bd84fc0b5f64
   114     else:
   114     else:
   115         # compute common, missing and exclude secret stuff
   115         # compute common, missing and exclude secret stuff
   116         sets = repo.changelog.findcommonmissing(og.commonheads, onlyheads)
   116         sets = repo.changelog.findcommonmissing(og.commonheads, onlyheads)
   117         og._common, allmissing = sets
   117         og._common, allmissing = sets
   118         og._missing = missing = []
   118         og._missing = missing = []
   119         og._excluded = excluded = []
   119         og.excluded = excluded = []
   120         for node in allmissing:
   120         for node in allmissing:
   121             if repo[node].phase() >= phases.secret:
   121             if repo[node].phase() >= phases.secret:
   122                 excluded.append(node)
   122                 excluded.append(node)
   123             else:
   123             else:
   124                 missing.append(node)
   124                 missing.append(node)