Skip to content

Commit

Permalink
display inner error message for std::io::Error
Browse files Browse the repository at this point in the history
  • Loading branch information
hone committed Dec 30, 2020
1 parent 63056ea commit 583cd5f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/error.rs
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,6 @@ pub enum Error {
TomlSerError(#[from] toml::ser::Error),
#[error("could not deserialize from TOML")]
TomlDeError(#[from] toml::de::Error),
#[error("I/O Error")]
#[error("I/O Error: {0}")]
IoError(#[from] std::io::Error),
}

0 comments on commit 583cd5f

Please sign in to comment.