aboutsummaryrefslogtreecommitdiffstats
path: root/examples/simple/add_header_class.py
diff options
context:
space:
mode:
authorAldo Cortesi <aldo@corte.si>2017-03-14 13:02:58 +1300
committerGitHub <noreply@github.com>2017-03-14 13:02:58 +1300
commit124a6c9e5af44121208c3362215cc3ea895ffad7 (patch)
tree8c8f24f119aae9b22832bfa0e6b5c0a397133d17 /examples/simple/add_header_class.py
parentee65894d40f5a9f73125a8d3e73ba50540939e5b (diff)
parent1b301ad5bbe5765b608bf4f8480720065d3343c8 (diff)
downloadmitmproxy-124a6c9e5af44121208c3362215cc3ea895ffad7.tar.gz
mitmproxy-124a6c9e5af44121208c3362215cc3ea895ffad7.tar.bz2
mitmproxy-124a6c9e5af44121208c3362215cc3ea895ffad7.zip
Merge pull request #2129 from cortesi/addonopts
Custom options for addons
Diffstat (limited to 'examples/simple/add_header_class.py')
-rw-r--r--examples/simple/add_header_class.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/simple/add_header_class.py b/examples/simple/add_header_class.py
index 6443798a..9270be09 100644
--- a/examples/simple/add_header_class.py
+++ b/examples/simple/add_header_class.py
@@ -3,5 +3,5 @@ class AddHeader:
flow.response.headers["newheader"] = "foo"
-def start():
+def start(opts):
return AddHeader()