aboutsummaryrefslogtreecommitdiffstats
path: root/examples/modify_querystring.py
diff options
context:
space:
mode:
Diffstat (limited to 'examples/modify_querystring.py')
-rw-r--r--examples/modify_querystring.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/examples/modify_querystring.py b/examples/modify_querystring.py
index 7f31a48f..d682df69 100644
--- a/examples/modify_querystring.py
+++ b/examples/modify_querystring.py
@@ -1,6 +1,5 @@
-
def request(context, flow):
- q = flow.request.get_query()
+ q = flow.request.query
if q:
q["mitmproxy"] = ["rocks"]
- flow.request.set_query(q)
+ flow.request.query = q