[PATCH] hgweb: replace next(revs) to revs.next() to fix compatibility with Python 2.5-

Alexander Plavin me at aplavin.ru
Thu Jul 25 07:46:26 CDT 2013


# HG changeset patch
# User Alexander Plavin <me at aplavin.ru>
# Date 1374751661 -14400
#      Thu Jul 25 15:27:41 2013 +0400
# Branch stable
# Node ID 669e01814c89a0deb1f9d8ad48c1483e363c9a68
# Parent  3ac1735a2265a1f0d0f5ea47a5e428e09c8b581d
hgweb: replace next(revs) to revs.next() to fix compatibility with Python 2.5-

diff -r 3ac1735a2265 -r 669e01814c89 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]


More information about the Mercurial-devel mailing list