From 68724d0b37e655c5a3aba82e4ec092d3a72807ff Mon Sep 17 00:00:00 2001 From: Dan LaManna Date: Mon, 4 Mar 2024 12:52:58 -0500 Subject: [PATCH] Rephrase logged out message --- isic_cli/cli/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/isic_cli/cli/utils.py b/isic_cli/cli/utils.py index edb1244..5986835 100644 --- a/isic_cli/cli/utils.py +++ b/isic_cli/cli/utils.py @@ -11,7 +11,7 @@ def suggest_guest_login(f): def decorator(ctx: IsicContext, **kwargs): if not ctx.user: click.echo( - "Psst, you're logged out. Logging in with `isic user login` might return more data.\n", # noqa: E501 + "If you have been granted special permissions, logging in with `isic user login` might return more data.\n", # noqa: E501 err=True, ) f(ctx, **kwargs)