diff --git a/src/lib.rs b/src/lib.rs index aab5ca5d..b4757c54 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -107,7 +107,8 @@ pub mod errors { errors { Subprocess(message: String, output: ::std::process::Output) { description("A subprocess failed") + display("{}: {}", message, String::from_utf8_lossy(&output.stdout)) } } } -} \ No newline at end of file +}