This commit is contained in:
Ashley Mannix
2017-05-29 18:29:39 +09:00
committed by Paul Masurel
parent b6140d2962
commit da61baed3b
+1 -3
View File
@@ -197,9 +197,7 @@ impl fmt::Display for DeleteError {
write!(f, "the file '{:?}' is protected and can't be deleted", path)
}
DeleteError::IOError(ref err) => {
write!(f,
"an io error occurred while deleting a file: '{}'",
err)
write!(f, "an io error occurred while deleting a file: '{}'", err)
}
}
}