Merge with BOS
authormpm@selenic.com
Wed, 24 Aug 2005 13:31:46 -0700
changeset 1035 bcb44382b0d0
parent 1023 bc806ba72959 (diff)
parent 1034 8dbbea5bc844 (current diff)
child 1036 7c00f5f2c967
child 1037 c0a1abf562eb
Merge with BOS
--- a/mercurial/hgweb.py	Wed Aug 24 13:26:45 2005 -0700
+++ b/mercurial/hgweb.py	Wed Aug 24 13:31:46 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