aboutsummaryrefslogtreecommitdiffstats
path: root/examples
diff options
context:
space:
mode:
authorcle1000 <cle1000.cb@gmail.com>2016-03-15 15:36:10 +0100
committercle1000 <cle1000.cb@gmail.com>2016-03-15 15:36:10 +0100
commit0a478e4e39395c3eb3dea9933b6e41f6ac3da038 (patch)
tree8ddf4e8d41cd533e5d994b21e490bea879346877 /examples
parent4604c25c6055a37e5f25a238d2a089759bd5d98a (diff)
downloadmitmproxy-0a478e4e39395c3eb3dea9933b6e41f6ac3da038.tar.gz
mitmproxy-0a478e4e39395c3eb3dea9933b6e41f6ac3da038.tar.bz2
mitmproxy-0a478e4e39395c3eb3dea9933b6e41f6ac3da038.zip
Update modify_response_body.py
fix typo
Diffstat (limited to 'examples')
-rw-r--r--examples/modify_response_body.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/modify_response_body.py b/examples/modify_response_body.py
index 88f69e15..d68bcf63 100644
--- a/examples/modify_response_body.py
+++ b/examples/modify_response_body.py
@@ -5,7 +5,7 @@ from mitmproxy.models import decoded
def start(context, argv):
if len(argv) != 3:
- raise ValueError('Usage: -s "modify-response-body.py old new"')
+ raise ValueError('Usage: -s "modify_response_body.py old new"')
# You may want to use Python's argparse for more sophisticated argument
# parsing.
context.old, context.new = argv[1], argv[2]