##// END OF EJS Templates
obsolete: fix old typo...
Boris Feld -
r33944:54c21114 default
parent child Browse files
Show More
@@ -562,9 +562,9 b' def successorssets(repo, initialnode, cl'
562 562 # remove duplicated and subset
563 563 seen = []
564 564 final = []
565 candidate = sorted((s for s in succssets if s),
566 key=len, reverse=True)
567 for cand in candidate:
565 candidates = sorted((s for s in succssets if s),
566 key=len, reverse=True)
567 for cand in candidates:
568 568 for seensuccs in seen:
569 569 if cand.canmerge(seensuccs):
570 570 seensuccs.markers.update(cand.markers)
General Comments 0
You need to be logged in to leave comments. Login now