Decrease the amount of color
This commit is contained in:
parent
01afbe1f2f
commit
7b08e39f00
2 changed files with 2 additions and 3 deletions
|
@ -336,9 +336,8 @@ def logout(app, user, args):
|
|||
|
||||
def activate(app, user, args):
|
||||
if not args.account:
|
||||
print_out("<green>Specify one of the following user accounts to activate:</green>\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)
|
||||
|
|
|
@ -205,7 +205,7 @@ def print_acct_list(accounts):
|
|||
|
||||
def print_user_list(users):
|
||||
for user in users:
|
||||
print_out(f"<green>{user}</green>")
|
||||
print_out(f"* {user}")
|
||||
|
||||
|
||||
def print_tag_list(tags):
|
||||
|
|
Loading…
Reference in a new issue