merge with crew-stable
authorThomas Arendsen Hein <thomas@intevation.de>
Tue, 05 Feb 2008 14:34:46 +0100
changeset 6018 404be894cf71
parent 6016 288ec2f6faa2 (current diff)
parent 6017 b29b75ce9645 (diff)
child 6020 20b05618b3e2
merge with crew-stable
mercurial/hgweb/hgweb_mod.py
--- a/mercurial/hgweb/hgweb_mod.py	Mon Feb 04 09:56:01 2008 -0600
+++ b/mercurial/hgweb/hgweb_mod.py	Tue Feb 05 14:34:46 2008 +0100
@@ -467,7 +467,7 @@
             def revgen():
                 for i in xrange(cl.count() - 1, 0, -100):
                     l = []
-                    for j in xrange(max(0, i - 100), i):
+                    for j in xrange(max(0, i - 100), i + 1):
                         ctx = self.repo.changectx(j)
                         l.append(ctx)
                     l.reverse()