Show More
@@ -84,9 +84,7 b' def _bisect(changelog, state):' | |||
|
84 | 84 | |
|
85 | 85 | for c in children.get(rev, []): |
|
86 | 86 | if ancestors[c]: |
|
87 | s = dict.fromkeys(ancestors[c]) | |
|
88 | s.update(dict.fromkeys(a)) | |
|
89 | ancestors[c] = s.keys() | |
|
87 | ancestors[c] = dict.fromkeys(ancestors[c] + a).keys() | |
|
90 | 88 | else: |
|
91 | 89 | ancestors[c] = a + [c] |
|
92 | 90 |
General Comments 0
You need to be logged in to leave comments.
Login now