mirror of
https://github.com/martinvonz/jj.git
synced 2025-01-12 07:14:38 +00:00
gpg: drop redundant "exit status" from error message
Apparently we currently get things like "GPG failed with exit status exit status: 2".
This commit is contained in:
parent
ee9d3271c1
commit
550f44b7c1
1 changed files with 1 additions and 1 deletions
|
@ -107,7 +107,7 @@ pub struct GpgBackend {
|
|||
|
||||
#[derive(Debug, Error)]
|
||||
pub enum GpgError {
|
||||
#[error("GPG failed with exit status {exit_status}:\n{stderr}")]
|
||||
#[error("GPG failed with {exit_status}:\n{stderr}")]
|
||||
Command {
|
||||
exit_status: ExitStatus,
|
||||
stderr: String,
|
||||
|
|
Loading…
Reference in a new issue