aboutsummaryrefslogtreecommitdiffstats
path: root/libmproxy/console/help.py
diff options
context:
space:
mode:
authorAldo Cortesi <aldo@corte.si>2013-04-19 17:17:32 -0700
committerAldo Cortesi <aldo@corte.si>2013-04-19 17:17:32 -0700
commit7bd3e1d2a46d748ee1a6fa8a584c483f99996973 (patch)
tree75abfa28f537d80174e87f94c9ec15ea7c53a8db /libmproxy/console/help.py
parent51b775cfd4165ed80dcb5458ddff942125fcba31 (diff)
parent3d7f31b23da599023f2315f68026fa99889ed9a0 (diff)
downloadmitmproxy-7bd3e1d2a46d748ee1a6fa8a584c483f99996973.tar.gz
mitmproxy-7bd3e1d2a46d748ee1a6fa8a584c483f99996973.tar.bz2
mitmproxy-7bd3e1d2a46d748ee1a6fa8a584c483f99996973.zip
Merge pull request #116 from afh/pull/highlight_key_help
Correct display mode highlight keys
Diffstat (limited to 'libmproxy/console/help.py')
-rw-r--r--libmproxy/console/help.py6
1 files changed, 5 insertions, 1 deletions
diff --git a/libmproxy/console/help.py b/libmproxy/console/help.py
index 40f81955..de373083 100644
--- a/libmproxy/console/help.py
+++ b/libmproxy/console/help.py
@@ -57,10 +57,14 @@ class HelpView(urwid.ListBox):
[("text", ": automatic detection")]
),
(None,
- common.highlight_key("hex", "h") +
+ common.highlight_key("hex", "e") +
[("text", ": Hex")]
),
(None,
+ common.highlight_key("html", "h") +
+ [("text", ": HTML")]
+ ),
+ (None,
common.highlight_key("image", "i") +
[("text", ": Image")]
),