aboutsummaryrefslogtreecommitdiffstats
path: root/examples/modify_response_body.py
diff options
context:
space:
mode:
authorMaximilian Hils <git@maximilianhils.com>2014-09-08 16:02:31 +0200
committerMaximilian Hils <git@maximilianhils.com>2014-09-08 17:03:34 +0200
commitebd539b49f0706918e979dc921cf454ae448eaf9 (patch)
tree1c541027c735e18c7486d5d9ebda7367278ac244 /examples/modify_response_body.py
parentd06b4bfa4e4cc51e903b49e246d7771726a3e3a4 (diff)
downloadmitmproxy-ebd539b49f0706918e979dc921cf454ae448eaf9.tar.gz
mitmproxy-ebd539b49f0706918e979dc921cf454ae448eaf9.tar.bz2
mitmproxy-ebd539b49f0706918e979dc921cf454ae448eaf9.zip
update examples, fix #353
Diffstat (limited to 'examples/modify_response_body.py')
-rw-r--r--examples/modify_response_body.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/examples/modify_response_body.py b/examples/modify_response_body.py
index e8428cdb..4afd0421 100644
--- a/examples/modify_response_body.py
+++ b/examples/modify_response_body.py
@@ -3,13 +3,13 @@
from libmproxy.protocol.http import decoded
-def start(ctx, argv):
+def start(context, argv):
if len(argv) != 3:
raise ValueError('Usage: -s "modify-response-body.py old new"')
# You may want to use Python's argparse for more sophisticated argument parsing.
- ctx.old, ctx.new = argv[1], argv[2]
+ context.old, context.new = argv[1], argv[2]
-def response(ctx, flow):
+def response(context, flow):
with decoded(flow.response): # automatically decode gzipped responses.
- flow.response.content = flow.response.content.replace(ctx.old, ctx.new) \ No newline at end of file
+ flow.response.content = flow.response.content.replace(context.old, context.new) \ No newline at end of file