mercurial/hgweb/hgweb_mod.py
changeset 6018 404be894cf71
parent 5995 b913d3aacddc
parent 6017 b29b75ce9645
child 6123 f7f25f58693a
--- 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()