aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorShadab Zafar <dufferzafar0@gmail.com>2016-07-24 22:21:04 +0530
committerShadab Zafar <dufferzafar0@gmail.com>2016-07-24 22:21:04 +0530
commit71b6b84f29d74629656794504361b06f80909a7e (patch)
treeeec288c4550ce02404d113ec064590005ee8349b
parenta3fa9e14aea6e586e839630c57df24aea8c55d26 (diff)
downloadmitmproxy-71b6b84f29d74629656794504361b06f80909a7e.tar.gz
mitmproxy-71b6b84f29d74629656794504361b06f80909a7e.tar.bz2
mitmproxy-71b6b84f29d74629656794504361b06f80909a7e.zip
Fix console search on Python 3
-rw-r--r--mitmproxy/console/searchable.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/mitmproxy/console/searchable.py b/mitmproxy/console/searchable.py
index c60d1cd9..d58d3d13 100644
--- a/mitmproxy/console/searchable.py
+++ b/mitmproxy/console/searchable.py
@@ -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]