aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMaximilian Hils <git@maximilianhils.com>2018-03-18 21:03:11 +0100
committerGitHub <noreply@github.com>2018-03-18 21:03:11 +0100
commitcaed8e67d1e47f95ed65be5356782d77e40d11f1 (patch)
treeddf4dac10724fb44352496ca6a639e8bd83377c3
parent3c7725a8ce56ef23f1877313396ad397bd4524f0 (diff)
parenta148b52548df8698e63ca22897d133c708613ee9 (diff)
downloadmitmproxy-caed8e67d1e47f95ed65be5356782d77e40d11f1.tar.gz
mitmproxy-caed8e67d1e47f95ed65be5356782d77e40d11f1.tar.bz2
mitmproxy-caed8e67d1e47f95ed65be5356782d77e40d11f1.zip
Merge pull request #2999 from fenilgandhi/Fix-2953
Remove Highlight from status bar
-rw-r--r--mitmproxy/tools/console/statusbar.py4
1 files changed, 1 insertions, 3 deletions
diff --git a/mitmproxy/tools/console/statusbar.py b/mitmproxy/tools/console/statusbar.py
index 34bba18d..fa987e94 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"))