aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--libmproxy/console/grideditor.py8
1 files changed, 8 insertions, 0 deletions
diff --git a/libmproxy/console/grideditor.py b/libmproxy/console/grideditor.py
index 34c089b2..60329ddc 100644
--- a/libmproxy/console/grideditor.py
+++ b/libmproxy/console/grideditor.py
@@ -34,6 +34,14 @@ def _mkhelp():
("enter", "edit field"),
]
text.extend(common.format_keyvals(keys, key="key", val="text", indent=4))
+ text.append(
+ urwid.Text(
+ [
+ "\n",
+ ("text", " Values are displayed and edited as escaped Python-style strings.\n"),
+ ]
+ )
+ )
return text
help_context = _mkhelp()