From 07ad41960f8fbb63af4bad7998b100580357ad7b Mon Sep 17 00:00:00 2001 From: Ivan Habunek Date: Mon, 8 Apr 2024 08:34:56 +0200 Subject: [PATCH] Capitalize visibility --- toot/output.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/toot/output.py b/toot/output.py index b5617c9..e9b0812 100644 --- a/toot/output.py +++ b/toot/output.py @@ -219,7 +219,7 @@ def status_lines(status: Status) -> t.Generator[str, None, None]: reply = f"↲ In reply to {yellow(in_reply_to_id)} " if in_reply_to_id else "" boost = f"↻ {blue(reblogged_by_acct)} boosted " if reblogged_by else "" - yield f"ID {yellow(status_id)} visibility: {status.visibility} {reply} {boost}" + yield f"ID {yellow(status_id)} Visibility: {status.visibility} {reply} {boost}" def html_lines(html: str, width: int) -> t.Generator[str, None, None]: