--- a/mercurial/hgweb.py Wed Aug 24 03:32:08 2005 -0700
+++ b/mercurial/hgweb.py Wed Aug 24 03:33:54 2005 -0700
@@ -313,7 +313,8 @@
for j in range(max(0, i - 100), i):
n = cl.node(j)
changes = cl.read(n)
- l.insert(0, (n, j, changes))
+ l.append((n, j, changes))
+ l.reverse()
for e in l:
yield e