diff options
| author | Maximilian Hils <git@maximilianhils.com> | 2017-03-06 23:33:33 +0100 | 
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-03-06 23:33:33 +0100 | 
| commit | 193c7070618eb8ef1bf3e0bff2829439d51a4f42 (patch) | |
| tree | cad5ca661eba65136085bb94072fbc7c69592e8b | |
| parent | 8b79892246b2797307f7702e1977d231ad5e9295 (diff) | |
| parent | fd5079b8a6da1a162f6209d27f1f075f91858108 (diff) | |
| download | mitmproxy-193c7070618eb8ef1bf3e0bff2829439d51a4f42.tar.gz mitmproxy-193c7070618eb8ef1bf3e0bff2829439d51a4f42.tar.bz2 mitmproxy-193c7070618eb8ef1bf3e0bff2829439d51a4f42.zip | |
Merge pull request #2104 from lymanZerga11/patch-2
Fixes #2102
| -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 83ad63f3..d2e28d35 100644 --- a/mitmproxy/tools/console/flowlist.py +++ b/mitmproxy/tools/console/flowlist.py @@ -68,7 +68,7 @@ class LogBufferBox(urwid.ListBox):              self.set_focus(0)          elif key == "F":              o = self.master.options -            o.focus_follow = not o.focus_follow +            o.console_focus_follow = not o.console_focus_follow          return urwid.ListBox.keypress(self, size, key) | 
