diff options
author | Aldo Cortesi <aldo@nullcube.com> | 2015-03-29 19:21:54 +1300 |
---|---|---|
committer | Aldo Cortesi <aldo@nullcube.com> | 2015-03-29 19:24:37 +1300 |
commit | 8f5cf833d08aba685263554d0bd89f922cd6afae (patch) | |
tree | 798361e6411a8a284c48844dbd2cd20fb6a08d7a /libmproxy/console/searchable.py | |
parent | cacd09fafc19b323c46c4c565d0044593b677e17 (diff) | |
download | mitmproxy-8f5cf833d08aba685263554d0bd89f922cd6afae.tar.gz mitmproxy-8f5cf833d08aba685263554d0bd89f922cd6afae.tar.bz2 mitmproxy-8f5cf833d08aba685263554d0bd89f922cd6afae.zip |
Add flow detail view as a tab in the flow view
Diffstat (limited to 'libmproxy/console/searchable.py')
-rw-r--r-- | libmproxy/console/searchable.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libmproxy/console/searchable.py b/libmproxy/console/searchable.py index 8f63c3f5..9d66c718 100644 --- a/libmproxy/console/searchable.py +++ b/libmproxy/console/searchable.py @@ -36,7 +36,7 @@ class Searchable(urwid.ListBox): if key == "N": self.find_next(True) else: - return super(self.__class__, self).keypress(size, key) + return key def set_search(self, text): self.state.last_search = text |