diff options
| author | John Lyu <PaleNeutron@users.noreply.github.com> | 2018-02-19 22:25:13 +0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-02-19 22:25:13 +0800 |
| commit | e467c01afe5a8f782570e21523a583372f82b78a (patch) | |
| tree | f28f888c07c83e9dcead3d8fac276a5103684a22 | |
| parent | 93425d4b1aaab2d96ff001fee2997be1a51e7c17 (diff) | |
| download | mitmproxy-e467c01afe5a8f782570e21523a583372f82b78a.tar.gz mitmproxy-e467c01afe5a8f782570e21523a583372f82b78a.tar.bz2 mitmproxy-e467c01afe5a8f782570e21523a583372f82b78a.zip | |
Remove heading_key of [script:n]
| -rw-r--r-- | mitmproxy/tools/console/statusbar.py | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/mitmproxy/tools/console/statusbar.py b/mitmproxy/tools/console/statusbar.py index ef32b195..ac991ef1 100644 --- a/mitmproxy/tools/console/statusbar.py +++ b/mitmproxy/tools/console/statusbar.py @@ -230,9 +230,7 @@ class StatusBar(urwid.WidgetWrap): if self.master.options.mode != "regular": r.append("[%s]" % self.master.options.mode) if self.master.options.scripts: - r.append("[") - r.append(("heading_key", "s")) - r.append("cripts:%s]" % len(self.master.options.scripts)) + r.append("[scripts:%s]" % len(self.master.options.scripts)) if self.master.options.save_stream_file: r.append("[W:%s]" % self.master.options.save_stream_file) |
