diff options
author | Aldo Cortesi <aldo@nullcube.com> | 2011-12-28 14:56:40 -0800 |
---|---|---|
committer | Aldo Cortesi <aldo@nullcube.com> | 2011-12-28 14:56:40 -0800 |
commit | 2a09cad420f2d74246deda7c48552b089714a0b6 (patch) | |
tree | d462d610057afb64df80eb0a5b05dd7cf942ea00 /libmproxy/console.py | |
parent | 28fd3bd461f17ce6b1af09eca7e84965dbb41c9d (diff) | |
parent | 05111f093d66d5a277a69e8a610e4bf10ca249c6 (diff) | |
download | mitmproxy-2a09cad420f2d74246deda7c48552b089714a0b6.tar.gz mitmproxy-2a09cad420f2d74246deda7c48552b089714a0b6.tar.bz2 mitmproxy-2a09cad420f2d74246deda7c48552b089714a0b6.zip |
Merge pull request #21 from mehaase/master
Merge fixes from Mark E. Haase.
Diffstat (limited to 'libmproxy/console.py')
-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)]) |