##// END OF EJS Templates
hgweb: fix iterator reuse in atom feed generation
Matt Mackall -
r18029:109a6a9d stable
parent child Browse files
Show More
@@ -394,7 +394,7 b' def manifest(web, req, tmpl):'
394 branches=webutil.nodebranchdict(web.repo, ctx))
394 branches=webutil.nodebranchdict(web.repo, ctx))
395
395
396 def tags(web, req, tmpl):
396 def tags(web, req, tmpl):
397 i = reversed(web.repo.tagslist())
397 i = list(reversed(web.repo.tagslist()))
398 parity = paritygen(web.stripecount)
398 parity = paritygen(web.stripecount)
399
399
400 def entries(notip=False, limit=0, **map):
400 def entries(notip=False, limit=0, **map):
General Comments 0
You need to be logged in to leave comments. Login now