changeset 6747 | f6c00b17387c |
parent 6691 | 0dba955c2636 |
child 7030 | 20a5dd5d6dd9 |
6746:1dca460e7d1e | 6747:f6c00b17387c |
---|---|
67 elif r == curr_rev: |
67 elif r == curr_rev: |
68 for p in parents: |
68 for p in parents: |
69 edges.append((col, next.index(p), colors[p])) |
69 edges.append((col, next.index(p), colors[p])) |
70 |
70 |
71 # Yield and move on |
71 # Yield and move on |
72 yield (repo.changectx(curr_rev), (idx, color), edges) |
72 yield (repo[curr_rev], (idx, color), edges) |
73 revs = next |
73 revs = next |
74 curr_rev -= 1 |
74 curr_rev -= 1 |