From 2f2f3b6898c68bcfbf46697af04f84fc331726c0 Mon Sep 17 00:00:00 2001 From: Michael Hoang Date: Thu, 7 Aug 2025 14:47:33 +1000 Subject: [PATCH] cli: fix missing newline in error message --- pkgs/clan-cli/clan_cli/secrets/sops.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/clan-cli/clan_cli/secrets/sops.py b/pkgs/clan-cli/clan_cli/secrets/sops.py index d2f28bfca..f428bf459 100644 --- a/pkgs/clan-cli/clan_cli/secrets/sops.py +++ b/pkgs/clan-cli/clan_cli/secrets/sops.py @@ -445,7 +445,7 @@ def ensure_admin_public_keys(flake_dir: Path) -> set[SopsKey]: msg = ( f"We could not figure out which Clan secrets user you are with the SOPS keys we found:\n" f"- {'\n- '.join(f'{key.key_type.name.lower()}: {key.pubkey}' for key in keys)}\n\n" - f"Please ensure you have created a Clan secrets user and added one of your SOPS keys" + f"Please ensure you have created a Clan secrets user and added one of your SOPS keys\n" f"to that user.\n" f"For more information, see: https://docs.clan.lol/guides/secrets/#add-your-public-keys" )