diff options
author | Legend Tang <sp3478@gmail.com> | 2015-04-06 11:28:20 +0800 |
---|---|---|
committer | Legend Tang <sp3478@gmail.com> | 2015-04-06 11:28:20 +0800 |
commit | 20d3d7e1b85f1886c4920eaf6c86d0b50754fd1b (patch) | |
tree | b3dfe6052fa0183cd3e3ed5927468ec499de2762 /libmproxy/console/searchable.py | |
parent | 269571efe50b1627e41a798a9b0625d6f71526db (diff) | |
parent | aadaa66d0b92ce7e97e3303e3152a2dda6d320e9 (diff) | |
download | mitmproxy-20d3d7e1b85f1886c4920eaf6c86d0b50754fd1b.tar.gz mitmproxy-20d3d7e1b85f1886c4920eaf6c86d0b50754fd1b.tar.bz2 mitmproxy-20d3d7e1b85f1886c4920eaf6c86d0b50754fd1b.zip |
Merge https://github.com/mitmproxy/mitmproxy
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 9d66c718..8f63c3f5 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 key + return super(self.__class__, self).keypress(size, key) def set_search(self, text): self.state.last_search = text |