commit c3dac12fc76bb527e984cac859e99c01d69d8f4f
parent d913d2846be28fae5410142c99522e5f835b6c69
Author: Sean Enck <sean@ttypty.com>
Date: Tue, 9 Sep 2025 18:49:41 -0400
just display the entry
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/internal/app/showclip.go b/internal/app/showclip.go
@@ -50,7 +50,7 @@ func getEntity(entry string, cmd CommandOptions) (string, error) {
}
val, ok := existing.Value(base)
if !ok {
- return "", fmt.Errorf("entity value invalid: %s (%s)", base, entry)
+ return "", fmt.Errorf("entity value invalid: %s", entry)
}
return val, nil
}