Update modify_response_body.py

fix typo
This commit is contained in:
cle1000 2016-03-15 15:36:10 +01:00
parent 4604c25c60
commit 0a478e4e39

View File

@ -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]