diff options
Diffstat (limited to 'test/mitmproxy/data/addonscripts/addon.py')
-rw-r--r-- | test/mitmproxy/data/addonscripts/addon.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/mitmproxy/data/addonscripts/addon.py b/test/mitmproxy/data/addonscripts/addon.py index 42e28a93..8c834d82 100644 --- a/test/mitmproxy/data/addonscripts/addon.py +++ b/test/mitmproxy/data/addonscripts/addon.py @@ -9,12 +9,12 @@ class Addon: def load(self, opts): event_log.append("addonload") - def configure(self, options, updated): + def configure(self, updated): event_log.append("addonconfigure") -def configure(options, updated): - event_log.append("addonconfigure") +def configure(updated): + event_log.append("scriptconfigure") def load(l): |