aboutsummaryrefslogtreecommitdiffstats
path: root/examples
diff options
context:
space:
mode:
authorMaximilian Hils <git@maximilianhils.com>2018-02-20 21:45:48 +0100
committerGitHub <noreply@github.com>2018-02-20 21:45:48 +0100
commit95c160ac131e235644c12795dc66b46f9b4478cd (patch)
tree8d139b897d8641e65405221d4344216209581410 /examples
parent3934dbb5ad6bf69fd22f682a74b2933874f9f01f (diff)
parent34dbd9adbbde2a5610b8a0b366a8b32fbca000ae (diff)
downloadmitmproxy-95c160ac131e235644c12795dc66b46f9b4478cd.tar.gz
mitmproxy-95c160ac131e235644c12795dc66b46f9b4478cd.tar.bz2
mitmproxy-95c160ac131e235644c12795dc66b46f9b4478cd.zip
Merge pull request #2884 from kajojify/hotkeys-cleanup
Hotkeys cleanup. #2877
Diffstat (limited to 'examples')
-rw-r--r--examples/simple/custom_contentview.py4
1 files changed, 0 insertions, 4 deletions
diff --git a/examples/simple/custom_contentview.py b/examples/simple/custom_contentview.py
index b958bdce..77d32474 100644
--- a/examples/simple/custom_contentview.py
+++ b/examples/simple/custom_contentview.py
@@ -7,10 +7,6 @@ from mitmproxy import contentviews
class ViewSwapCase(contentviews.View):
name = "swapcase"
-
- # We don't have a good solution for the keyboard shortcut yet -
- # you manually need to find a free letter. Contributions welcome :)
- prompt = ("swap case text", "z")
content_types = ["text/plain"]
def __call__(self, data, **metadata) -> contentviews.TViewResult: