diff options
-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 caffe4e6..f65031b3 100644 --- a/mitmproxy/tools/console/statusbar.py +++ b/mitmproxy/tools/console/statusbar.py @@ -73,7 +73,7 @@ class ActionBar(urwid.WidgetWrap): msg_lines = msg_text.split("\n") first_line = msg_lines[0] if len(msg_lines) > 1: - # Messages with a few lines must end with prompt. + # First line of messages with a few lines must end with prompt. line_length = len(first_line) + len(prompt) else: line_length = len(first_line) |