aboutsummaryrefslogtreecommitdiffstats
path: root/examples/nonblocking.py
diff options
context:
space:
mode:
authorMaximilian Hils <git@maximilianhils.com>2016-07-07 18:37:33 -0700
committerMaximilian Hils <git@maximilianhils.com>2016-07-07 20:14:52 -0700
commitc048ae1d5b652ad4778917e624ace217e1ecfd91 (patch)
tree1c650c871df749f8e77d70e74366ebe599d7e0b4 /examples/nonblocking.py
parent7a5b21556b7c707ed3da8d6fa3ece8119ea38630 (diff)
downloadmitmproxy-c048ae1d5b652ad4778917e624ace217e1ecfd91.tar.gz
mitmproxy-c048ae1d5b652ad4778917e624ace217e1ecfd91.tar.bz2
mitmproxy-c048ae1d5b652ad4778917e624ace217e1ecfd91.zip
remove context from all scripts
Diffstat (limited to 'examples/nonblocking.py')
-rw-r--r--examples/nonblocking.py7
1 files changed, 4 insertions, 3 deletions
diff --git a/examples/nonblocking.py b/examples/nonblocking.py
index 4609f389..05a26921 100644
--- a/examples/nonblocking.py
+++ b/examples/nonblocking.py
@@ -1,9 +1,10 @@
import time
+import mitmproxy
from mitmproxy.script import concurrent
@concurrent # Remove this and see what happens
-def request(context, flow):
- context.log("handle request: %s%s" % (flow.request.host, flow.request.path))
+def request(flow):
+ mitmproxy.log("handle request: %s%s" % (flow.request.host, flow.request.path))
time.sleep(5)
- context.log("start request: %s%s" % (flow.request.host, flow.request.path))
+ mitmproxy.log("start request: %s%s" % (flow.request.host, flow.request.path))