Commit 70874539 authored by Tres Seaver's avatar Tres Seaver

Moar Py3k compat.

parent 5f4f6d4f
......@@ -1086,7 +1086,7 @@ class _TreeItems(object):
while i > self.index:
try:
self.v = self.it.next()
self.v = next(self.it)
except StopIteration:
raise IndexError(i)
else:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment