# HG changeset patch # User mpm@selenic.com # Date 1124915506 25200 # Node ID bcb44382b0d044475690a9aa1ff6b22e7f033568 # Parent bc806ba729593c7f33ec513e577a5b518cf90c0f# Parent 8dbbea5bc844b853f1acc1ac87d84727e629699c Merge with BOS diff --git a/mercurial/hgweb.py b/mercurial/hgweb.py --- a/mercurial/hgweb.py +++ b/mercurial/hgweb.py @@ -313,7 +313,8 @@ class hgweb: 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