##// END OF EJS Templates
Minor tweak to the revgen algorithm
mpm@selenic.com -
r1023:bc806ba7 default
parent child Browse files
Show More
@@ -313,7 +313,8 b' class hgweb:'
313 313 for j in range(max(0, i - 100), i):
314 314 n = cl.node(j)
315 315 changes = cl.read(n)
316 l.insert(0, (n, j, changes))
316 l.append((n, j, changes))
317 l.reverse()
317 318 for e in l:
318 319 yield e
319 320
General Comments 0
You need to be logged in to leave comments. Login now