aboutsummaryrefslogtreecommitdiffstats
path: root/libmproxy/console/help.py
diff options
context:
space:
mode:
authorAldo Cortesi <aldo@nullcube.com>2015-04-03 19:10:12 +1300
committerAldo Cortesi <aldo@nullcube.com>2015-04-03 19:10:12 +1300
commitddc353955d73c83a770b6d35bfe5fc282abe243f (patch)
tree6af0bcaf217b5afaa3a4d9df72519b7ab589f120 /libmproxy/console/help.py
parent41a1a0bef3b40b744c232a1adba478f8ac0f2c6c (diff)
downloadmitmproxy-ddc353955d73c83a770b6d35bfe5fc282abe243f.tar.gz
mitmproxy-ddc353955d73c83a770b6d35bfe5fc282abe243f.tar.bz2
mitmproxy-ddc353955d73c83a770b6d35bfe5fc282abe243f.zip
Don't list all options shortcuts in help
Diffstat (limited to 'libmproxy/console/help.py')
-rw-r--r--libmproxy/console/help.py27
1 files changed, 1 insertions, 26 deletions
diff --git a/libmproxy/console/help.py b/libmproxy/console/help.py
index 73cd8a50..19f17625 100644
--- a/libmproxy/console/help.py
+++ b/libmproxy/console/help.py
@@ -89,32 +89,7 @@ class HelpView(urwid.ListBox):
common.highlight_key("amf", "f") +
[("text", ": AMF (requires PyAMF)")]
),
- ("o", "toggle options:"),
- (None,
- common.highlight_key("anticache", "a") +
- [("text", ": prevent cached responses")]
- ),
- (None,
- common.highlight_key("anticomp", "c") +
- [("text", ": prevent compressed responses")]
- ),
- (None,
- common.highlight_key("showhost", "h") +
- [("text", ": use Host header for URL display")]
- ),
- (None,
- common.highlight_key("killextra", "k") +
- [("text", ": kill requests not part of server replay")]
- ),
- (None,
- common.highlight_key("norefresh", "n") +
- [("text", ": disable server replay response refresh")]
- ),
- (None,
- common.highlight_key("upstream certs", "u") +
- [("text", ": sniff cert info from upstream server")]
- ),
-
+ ("o", "options"),
("q", "quit / return to flow list"),
("Q", "quit without confirm prompt"),
("R", "edit replacement patterns"),