# HG changeset patch # User Alexander Plavin # Date 1374751661 -14400 # Node ID 81318ca090a2d5e66942b60ed28b33450bfc881a # Parent 3ac1735a2265a1f0d0f5ea47a5e428e09c8b581d hgweb: replace next(revs) to revs.next() to fix compatibility with Python 2.5- diff -r 3ac1735a2265 -r 81318ca090a2 mercurial/hgweb/webcommands.py --- a/mercurial/hgweb/webcommands.py Thu Jul 25 02:44:27 2013 -0500 +++ b/mercurial/hgweb/webcommands.py Thu Jul 25 15:27:41 2013 +0400 @@ -204,7 +204,7 @@ 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]