diff options
author | Mark E. Haase <mehaase@gmail.com> | 2011-12-28 16:47:30 -0500 |
---|---|---|
committer | Mark E. Haase <mehaase@gmail.com> | 2011-12-28 16:47:30 -0500 |
commit | 965d318164f430a1b1680f205616954aac2faace (patch) | |
tree | e555dbacbdee65dfccda1688c72c19b883a670ab /libmproxy | |
parent | 28fd3bd461f17ce6b1af09eca7e84965dbb41c9d (diff) | |
download | mitmproxy-965d318164f430a1b1680f205616954aac2faace.tar.gz mitmproxy-965d318164f430a1b1680f205616954aac2faace.tar.bz2 mitmproxy-965d318164f430a1b1680f205616954aac2faace.zip |
Help docs have ~r as an example but ~r isn't valid. I think it's supposed to be ~q.
Diffstat (limited to 'libmproxy')
-rw-r--r-- | libmproxy/console.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libmproxy/console.py b/libmproxy/console.py index 337cd243..fb1a2ed0 100644 --- a/libmproxy/console.py +++ b/libmproxy/console.py @@ -1499,8 +1499,8 @@ class ConsoleMaster(flow.FlowMaster): ) examples = [ ("google\.com", "Url containing \"google.com"), - ("~r ~b test", "Requests where body contains \"test\""), - ("!(~r & ~t \"text/html\")", "Anything but requests with a text/html content type."), + ("~q ~b test", "Requests where body contains \"test\""), + ("!(~q & ~t \"text/html\")", "Anything but requests with a text/html content type."), ] text.extend(format_keyvals(examples, key="key", val="text", indent=4)) return urwid.ListBox([urwid.Text(text)]) |