diff options
author | Thomas Kriechbaumer <thomas@kriechbaumer.name> | 2016-12-03 16:53:13 +0100 |
---|---|---|
committer | Thomas Kriechbaumer <thomas@kriechbaumer.name> | 2016-12-03 16:53:13 +0100 |
commit | e9fa786fa9e51750d951f2965590c39be9021929 (patch) | |
tree | 54e1502a16980cbb40c7df70ad67fd7f07e830d7 | |
parent | 1fcf79fff049859e97559a19264203b89eb42775 (diff) | |
download | mitmproxy-e9fa786fa9e51750d951f2965590c39be9021929.tar.gz mitmproxy-e9fa786fa9e51750d951f2965590c39be9021929.tar.bz2 mitmproxy-e9fa786fa9e51750d951f2965590c39be9021929.zip |
fix indentation
-rw-r--r-- | mitmproxy/addons/script.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mitmproxy/addons/script.py b/mitmproxy/addons/script.py index d8ed0e39..12544b27 100644 --- a/mitmproxy/addons/script.py +++ b/mitmproxy/addons/script.py @@ -233,8 +233,8 @@ class ScriptLoader: for a in ctx.master.addons.chain[:]: if isinstance(a, Script) and a.name not in options.scripts: - ctx.log.info("Un-loading script: %s" % a.name) - ctx.master.addons.remove(a) + ctx.log.info("Un-loading script: %s" % a.name) + ctx.master.addons.remove(a) # The machinations below are to ensure that: # - Scripts remain in the same order |