summaryrefslogtreecommitdiffstats
path: root/src/errors.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/errors.rs')
-rw-r--r--src/errors.rs5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/errors.rs b/src/errors.rs
index 44be52a..b351309 100644
--- a/src/errors.rs
+++ b/src/errors.rs
@@ -41,7 +41,10 @@ impl From<IoError> for Error {
}
impl fmt::Display for Error {
- fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
+ fn fmt(
+ &self,
+ f: &mut fmt::Formatter,
+ ) -> fmt::Result {
write!(f, "Docker Error: ")?;
match self {
&Error::SerdeJsonError(ref err) => return err.fmt(f),