From 412aa0f4cb87d7caae5ce7bf5e56a369d1e88c78 Mon Sep 17 00:00:00 2001 From: "Andrew Phillips (aider)" Date: Sat, 10 May 2025 13:56:03 -0300 Subject: [PATCH] fix: correct ErrorKind from InvalidInput to InvalidValue --- src/modes/list.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modes/list.rs b/src/modes/list.rs index 7dd49c2..4ae350d 100644 --- a/src/modes/list.rs +++ b/src/modes/list.rs @@ -24,7 +24,7 @@ pub fn mode_list( ) -> anyhow::Result<()> { if !ids.is_empty() { cmd.error( - clap::error::ErrorKind::InvalidInput, + clap::error::ErrorKind::InvalidValue, "ID given, you can only supply tags when using --list", ) .exit();