From c17a75624e3de1aaa44bead212e9ea02a855c428 Mon Sep 17 00:00:00 2001 From: Yuya Nishihara Date: Tue, 14 May 2024 09:26:17 +0900 Subject: [PATCH] signing: remove redundant "exit status" from SSH backend error Follows up 550f44b7c14f "gpg: drop redundant "exit status" from error message." --- lib/src/ssh_signing.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/src/ssh_signing.rs b/lib/src/ssh_signing.rs index 34266c158..f514b940a 100644 --- a/lib/src/ssh_signing.rs +++ b/lib/src/ssh_signing.rs @@ -33,7 +33,7 @@ pub struct SshBackend { #[derive(Debug, Error)] pub enum SshError { - #[error("SSH sign failed with exit status {exit_status}:\n{stderr}")] + #[error("SSH sign failed with {exit_status}:\n{stderr}")] Command { exit_status: ExitStatus, stderr: String,