# HG changeset patch # User Alexander Plavin # Date 2013-07-25 11:27:41 # Node ID 81318ca090a2d5e66942b60ed28b33450bfc881a # Parent 3ac1735a2265a1f0d0f5ea47a5e428e09c8b581d hgweb: replace next(revs) to revs.next() to fix compatibility with Python 2.5- diff --git a/mercurial/hgweb/webcommands.py b/mercurial/hgweb/webcommands.py --- a/mercurial/hgweb/webcommands.py +++ b/mercurial/hgweb/webcommands.py @@ -204,7 +204,7 @@ def changelog(web, req, tmpl, shortlog=F if pos != -1: revs = web.repo.changelog.revs(pos, 0) if latestonly: - revs = (next(revs),) + revs = (revs.next(),) curcount = 0 for i in revs: ctx = web.repo[i]