Show More
@@ -107,14 +107,14 b' class BranchMapCache(object):' | |||
|
107 | 107 | clrev = cl.rev |
|
108 | 108 | clbranchinfo = cl.branchinfo |
|
109 | 109 | rbheads = [] |
|
110 |
closed = |
|
|
110 | closed = set() | |
|
111 | 111 | for bheads in pycompat.itervalues(remotebranchmap): |
|
112 | 112 | rbheads += bheads |
|
113 | 113 | for h in bheads: |
|
114 | 114 | r = clrev(h) |
|
115 | 115 | b, c = clbranchinfo(r) |
|
116 | 116 | if c: |
|
117 |
closed.a |
|
|
117 | closed.add(h) | |
|
118 | 118 | |
|
119 | 119 | if rbheads: |
|
120 | 120 | rtiprev = max((int(clrev(node)) for node in rbheads)) |
@@ -122,7 +122,7 b' class BranchMapCache(object):' | |||
|
122 | 122 | remotebranchmap, |
|
123 | 123 | repo[rtiprev].node(), |
|
124 | 124 | rtiprev, |
|
125 |
closednodes= |
|
|
125 | closednodes=closed, | |
|
126 | 126 | ) |
|
127 | 127 | |
|
128 | 128 | # Try to stick it as low as possible |
General Comments 0
You need to be logged in to leave comments.
Login now