mirror of
https://github.com/martinvonz/jj.git
synced 2025-01-26 06:01:48 +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)]
|
#[derive(Debug, Error)]
|
||||||
pub enum GpgError {
|
pub enum GpgError {
|
||||||
#[error("GPG failed with exit status {exit_status}:\n{stderr}")]
|
#[error("GPG failed with {exit_status}:\n{stderr}")]
|
||||||
Command {
|
Command {
|
||||||
exit_status: ExitStatus,
|
exit_status: ExitStatus,
|
||||||
stderr: String,
|
stderr: String,
|
||||||
|
|
Loading…
Reference in a new issue