##// 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 for r in range(p + 1, self.count()):
185 for r in range(p + 1, self.count()):
186 n = self.node(r)
186 n = self.node(r)
187 for pn in self.parents(n):
187 for pn in self.parents(n):
188 if pn == p:
188 if pn == node:
189 c.append(p)
189 c.append(n)
190 continue
190 continue
191 elif pn == nullid:
191 elif pn == nullid:
192 continue
192 continue
General Comments 0
You need to be logged in to leave comments. Login now