diff options
| author | Fenil Gandhi <fanilgandhi@gmail.com> | 2018-03-19 01:10:08 +0530 |
|---|---|---|
| committer | Fenil Gandhi <fanilgandhi@gmail.com> | 2018-03-19 01:10:08 +0530 |
| commit | ef1c1239dc5d7e5960018729b545088378526710 (patch) | |
| tree | 2d3cbb927c520960da32ec813753ba8fa6063834 | |
| parent | 3c7725a8ce56ef23f1877313396ad397bd4524f0 (diff) | |
| download | mitmproxy-ef1c1239dc5d7e5960018729b545088378526710.tar.gz mitmproxy-ef1c1239dc5d7e5960018729b545088378526710.tar.bz2 mitmproxy-ef1c1239dc5d7e5960018729b545088378526710.zip | |
Remove Highlight from statusbar
| -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 34bba18d..47c7c163 100644 --- a/mitmproxy/tools/console/statusbar.py +++ b/mitmproxy/tools/console/statusbar.py @@ -191,9 +191,7 @@ class StatusBar(urwid.WidgetWrap): r.append(("heading_key", "H")) r.append("eaders]") if len(self.master.options.replacements): - r.append("[") - r.append(("heading_key", "R")) - r.append("eplacing]") + r.append("[ %d replacements]" % (len(self.master.options.replacements))) if creplay.count(): r.append("[") r.append(("heading_key", "cplayback")) |
