##// END OF EJS Templates
Fixed revlog.children....
Tristan Wibberley -
r854:473c030d default
parent child Browse files
Show More
@@ -185,8 +185,8 b' class revlog:'
185 185 for r in range(p + 1, self.count()):
186 186 n = self.node(r)
187 187 for pn in self.parents(n):
188 if pn == p:
189 c.append(p)
188 if pn == node:
189 c.append(n)
190 190 continue
191 191 elif pn == nullid:
192 192 continue
General Comments 0
You need to be logged in to leave comments. Login now