Show More
@@ -562,9 +562,9 b' def successorssets(repo, initialnode, cl' | |||||
562 | # remove duplicated and subset |
|
562 | # remove duplicated and subset | |
563 | seen = [] |
|
563 | seen = [] | |
564 | final = [] |
|
564 | final = [] | |
565 | candidate = sorted((s for s in succssets if s), |
|
565 | candidates = sorted((s for s in succssets if s), | |
566 | key=len, reverse=True) |
|
566 | key=len, reverse=True) | |
567 | for cand in candidate: |
|
567 | for cand in candidates: | |
568 | for seensuccs in seen: |
|
568 | for seensuccs in seen: | |
569 | if cand.canmerge(seensuccs): |
|
569 | if cand.canmerge(seensuccs): | |
570 | seensuccs.markers.update(cand.markers) |
|
570 | seensuccs.markers.update(cand.markers) |
General Comments 0
You need to be logged in to leave comments.
Login now