diff options
| author | Aldo Cortesi <aldo@corte.si> | 2016-10-22 15:56:19 +1300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2016-10-22 15:56:19 +1300 |
| commit | ceb12e86280f754f9147b208818cce9831bf7f86 (patch) | |
| tree | 7c0feb4383503ae5cea5e641d887406ee3182aeb | |
| parent | 600906d1821d52d5af50939e5f8596ec12cc9f05 (diff) | |
| parent | 9fc1547053e629a630e60abe604c77fdab516aa7 (diff) | |
| download | mitmproxy-ceb12e86280f754f9147b208818cce9831bf7f86.tar.gz mitmproxy-ceb12e86280f754f9147b208818cce9831bf7f86.tar.bz2 mitmproxy-ceb12e86280f754f9147b208818cce9831bf7f86.zip | |
Merge pull request #1648 from cortesi/console
console: give statusbar messages a default timeout
| -rw-r--r-- | mitmproxy/tools/console/statusbar.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mitmproxy/tools/console/statusbar.py b/mitmproxy/tools/console/statusbar.py index 74382677..68b92703 100644 --- a/mitmproxy/tools/console/statusbar.py +++ b/mitmproxy/tools/console/statusbar.py @@ -25,7 +25,7 @@ class ActionBar(urwid.WidgetWrap): self.onekey = False self.pathprompt = False - def sig_message(self, sender, message, expire=None): + def sig_message(self, sender, message, expire=1): if self.prompting: return w = urwid.Text(message) |
