changeset 6660:5fb42da426cd

Merge with crew
author Matt Mackall <mpm@selenic.com>
date Wed, 11 Jun 2008 17:49:27 -0500
parents 7ca74741259f (current diff) bc553c6d1ef9 (diff)
children d1a312daa574
files
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/mercurial/hgweb/webcommands.py	Tue Jun 10 12:11:06 2008 -0500
+++ b/mercurial/hgweb/webcommands.py	Wed Jun 11 17:49:27 2008 -0500
@@ -129,7 +129,7 @@
             if miss:
                 continue
 
-            count = 1
+            count += 1
             n = ctx.node()
             showtags = webutil.showtag(web.repo, tmpl, 'changelogtag', n)
 
@@ -362,7 +362,7 @@
             if k == "tip": # skip tip
                 continue
 
-            count = 1
+            count += 1
             if count > 10: # limit to 10 tags
                 break