##// END OF EJS Templates
phase: explicitly exclude secret phase and above...
Boris Feld -
r39308:160bd45c default
parent child Browse files
Show More
@@ -586,7 +586,7 b' def subsetphaseheads(repo, subset):'
586 586 headsbyphase = [[] for i in allphases]
587 587 # No need to keep track of secret phase; any heads in the subset that
588 588 # are not mentioned are implicitly secret.
589 for phase in allphases[:-1]:
589 for phase in allphases[:secret]:
590 590 revset = "heads(%%ln & %s())" % phasenames[phase]
591 591 headsbyphase[phase] = [cl.node(r) for r in repo.revs(revset, subset)]
592 592 return headsbyphase
General Comments 0
You need to be logged in to leave comments. Login now