Skip to content

Commit

Permalink
Capitalize visibility
Browse files Browse the repository at this point in the history
  • Loading branch information
ihabunek committed Apr 8, 2024
1 parent 07beba8 commit 07ad419
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion toot/output.py
Original file line number Diff line number Diff line change
Expand Up @@ -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]:
Expand Down

0 comments on commit 07ad419

Please sign in to comment.