diff options
author | Maximilian Hils <git@maximilianhils.com> | 2017-02-02 17:24:04 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-02-02 17:24:04 +0100 |
commit | 8b6e3d8bd37ad2f806b55cf5974ed9c3d73596ac (patch) | |
tree | fb19263f8f563d0b9dbda582df443d16802c3fd1 | |
parent | 3f4d472c80f707b3ffbc060123d811c6bcae2afd (diff) | |
parent | 00a6551622ee0446b37f8da44512796a3d6d5b6e (diff) | |
download | mitmproxy-8b6e3d8bd37ad2f806b55cf5974ed9c3d73596ac.tar.gz mitmproxy-8b6e3d8bd37ad2f806b55cf5974ed9c3d73596ac.tar.bz2 mitmproxy-8b6e3d8bd37ad2f806b55cf5974ed9c3d73596ac.zip |
Merge pull request #1979 from 0neblock/master
Fixed following on flowlist
-rw-r--r-- | mitmproxy/tools/console/flowlist.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mitmproxy/tools/console/flowlist.py b/mitmproxy/tools/console/flowlist.py index 8ee2d55d..b26289af 100644 --- a/mitmproxy/tools/console/flowlist.py +++ b/mitmproxy/tools/console/flowlist.py @@ -396,7 +396,7 @@ class FlowListBox(urwid.ListBox): ) elif key == "F": o = self.master.options - o.focus_follow = not o.focus_follow + o.console_focus_follow = not o.console_focus_follow elif key == "v": val = not self.master.options.console_order_reversed self.master.options.console_order_reversed = val |