From 58d85b117a66fe99f9ff34b23acef624fea9a90f Mon Sep 17 00:00:00 2001 From: Qubasa Date: Fri, 31 Oct 2025 16:05:54 +0100 Subject: [PATCH] clan_lib/flake: Improve select error message --- pkgs/clan-cli/clan_lib/flake/flake.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/clan-cli/clan_lib/flake/flake.py b/pkgs/clan-cli/clan_lib/flake/flake.py index 29dcedff1..85cc0b71b 100644 --- a/pkgs/clan-cli/clan_lib/flake/flake.py +++ b/pkgs/clan-cli/clan_lib/flake/flake.py @@ -211,7 +211,7 @@ class ClanSelectError(ClanError): def __str__(self) -> str: if self.description: - return f"{self.msg} Reason: {self.description}" + return f"{self.msg} Reason: {self.description}. Use flag '--debug' to see full nix trace." return self.msg def __repr__(self) -> str: