diff options
Diffstat (limited to 'mitmproxy/tools/web/master.py')
-rw-r--r-- | mitmproxy/tools/web/master.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/mitmproxy/tools/web/master.py b/mitmproxy/tools/web/master.py index edb12467..db4855ff 100644 --- a/mitmproxy/tools/web/master.py +++ b/mitmproxy/tools/web/master.py @@ -10,6 +10,7 @@ from mitmproxy.addons import eventstore from mitmproxy.addons import intercept from mitmproxy.addons import termlog from mitmproxy.addons import view +from mitmproxy.options import Options # noqa from mitmproxy.tools.web import app @@ -67,7 +68,7 @@ class WebMaster(master.Master): app.ClientConnection.broadcast( resource="flows", cmd="remove", - data=dict(id=flow.id) + data=flow.id ) def _sig_view_refresh(self, view): |