diff options
author | Thomas Kriechbaumer <Kriechi@users.noreply.github.com> | 2017-02-20 10:14:18 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-02-20 10:14:18 +0100 |
commit | 927a1ebab4fff7c45258380384c57eb3fdb941e7 (patch) | |
tree | b12a7a193d27262eb921e161a849dbbf3e974932 /examples/simple/custom_contentview.py | |
parent | 3ee5227cca9e67df50310447efb6bc7c557d34bb (diff) | |
parent | 36352c95397351f4e69d857fcd8110fe125388f7 (diff) | |
download | mitmproxy-927a1ebab4fff7c45258380384c57eb3fdb941e7.tar.gz mitmproxy-927a1ebab4fff7c45258380384c57eb3fdb941e7.tar.bz2 mitmproxy-927a1ebab4fff7c45258380384c57eb3fdb941e7.zip |
Merge pull request #2045 from Kriechi/protobuf
protobuf: coverage++
Diffstat (limited to 'examples/simple/custom_contentview.py')
-rw-r--r-- | examples/simple/custom_contentview.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/simple/custom_contentview.py b/examples/simple/custom_contentview.py index 35216397..1f3a38ec 100644 --- a/examples/simple/custom_contentview.py +++ b/examples/simple/custom_contentview.py @@ -10,7 +10,7 @@ class ViewSwapCase(contentviews.View): # 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", "p") + prompt = ("swap case text", "z") content_types = ["text/plain"] def __call__(self, data: bytes, **metadata): |