diff options
author | Maximilian Hils <git@maximilianhils.com> | 2016-12-16 00:13:18 +0100 |
---|---|---|
committer | Maximilian Hils <git@maximilianhils.com> | 2016-12-16 05:43:38 +0100 |
commit | 388fa7e716aa634f841059f50a731c38c71dd36f (patch) | |
tree | cfac4930c89934a8a9b50d421e2d57c78b09eaee /mitmproxy/tools/web/master.py | |
parent | 6b5673e84911f3e2b1599c22c9b4f482a55b9ef1 (diff) | |
download | mitmproxy-388fa7e716aa634f841059f50a731c38c71dd36f.tar.gz mitmproxy-388fa7e716aa634f841059f50a731c38c71dd36f.tar.bz2 mitmproxy-388fa7e716aa634f841059f50a731c38c71dd36f.zip |
remove intercept events, update view manually
Diffstat (limited to 'mitmproxy/tools/web/master.py')
-rw-r--r-- | mitmproxy/tools/web/master.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mitmproxy/tools/web/master.py b/mitmproxy/tools/web/master.py index db4855ff..68a3db70 100644 --- a/mitmproxy/tools/web/master.py +++ b/mitmproxy/tools/web/master.py @@ -31,9 +31,9 @@ class WebMaster(master.Master): self.addons.add(*addons.default_addons()) self.addons.add( + intercept.Intercept(), self.view, self.events, - intercept.Intercept(), termlog.TermLog(), ) self.app = app.Application( |