Merge pull request #1423 from dufferzafar/fix-search

Fix console search on Python 3
This commit is contained in:
Maximilian Hils 2016-07-24 09:53:18 -07:00 committed by GitHub
commit e9eee5a6da

View File

@ -78,9 +78,9 @@ class Searchable(urwid.ListBox):
return
# Start search at focus + 1
if backwards:
rng = xrange(len(self.body) - 1, -1, -1)
rng = range(len(self.body) - 1, -1, -1)
else:
rng = xrange(1, len(self.body) + 1)
rng = range(1, len(self.body) + 1)
for i in rng:
off = (self.focus_position + i) % len(self.body)
w = self.body[off]