From 7b08e39f00bc1fc017728351044e5aee58aa59da Mon Sep 17 00:00:00 2001 From: Ivan Habunek Date: Thu, 22 Jun 2023 11:33:07 +0200 Subject: [PATCH] Decrease the amount of color --- toot/commands.py | 3 +-- toot/output.py | 2 +- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/toot/commands.py b/toot/commands.py index d4bd625..dbb5eb6 100644 --- a/toot/commands.py +++ b/toot/commands.py @@ -336,9 +336,8 @@ def logout(app, user, args): def activate(app, user, args): if not args.account: - print_out("Specify one of the following user accounts to activate:\n") + print_out("Specify one of the following user accounts to activate:\n") print_user_list(config.get_user_list()) - print_out("\n") return user = config.load_user(args.account, throw=True) diff --git a/toot/output.py b/toot/output.py index f722fae..3414cdb 100644 --- a/toot/output.py +++ b/toot/output.py @@ -205,7 +205,7 @@ def print_acct_list(accounts): def print_user_list(users): for user in users: - print_out(f"{user}") + print_out(f"* {user}") def print_tag_list(tags):