aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMaximilian Hils <git@maximilianhils.com>2016-12-09 18:32:58 +0100
committerGitHub <noreply@github.com>2016-12-09 18:32:58 +0100
commitd1c72574d5f0e83de9bdfa7c921134052b74ae44 (patch)
tree3dddfb2db719caf6f473e5af2967c9e9f9d7bbea
parent6792cc1de90b02b89da9ae80704ea237c5486e66 (diff)
parentf0e9e4bab90900c2e4966a7e8ba31496968645f7 (diff)
downloadmitmproxy-d1c72574d5f0e83de9bdfa7c921134052b74ae44.tar.gz
mitmproxy-d1c72574d5f0e83de9bdfa7c921134052b74ae44.tar.bz2
mitmproxy-d1c72574d5f0e83de9bdfa7c921134052b74ae44.zip
Merge pull request #1827 from mhils/issue-1803
Fix #1803
-rw-r--r--mitmproxy/tools/console/master.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/mitmproxy/tools/console/master.py b/mitmproxy/tools/console/master.py
index 173f2e2e..73d7adbd 100644
--- a/mitmproxy/tools/console/master.py
+++ b/mitmproxy/tools/console/master.py
@@ -49,6 +49,7 @@ class ConsoleMaster(master.Master):
def __init__(self, options, server):
super().__init__(options, server)
self.view = view.View() # type: view.View
+ self.view.sig_view_update.connect(signals.flow_change.send)
self.stream_path = None
# This line is just for type hinting
self.options = self.options # type: Options