summaryrefslogtreecommitdiffstats
path: root/src/finder/error.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/finder/error.rs')
-rw-r--r--src/finder/error.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/finder/error.rs b/src/finder/error.rs
index 181da21..6ea5017 100644
--- a/src/finder/error.rs
+++ b/src/finder/error.rs
@@ -2,7 +2,7 @@ pub type Result<T> = std::result::Result<T, Error>;
#[derive(thiserror::Error, Debug)]
pub enum Error {
- #[error("IO error: {0:?}")]
+ #[error("IO error: {0}")]
IO(#[from] std::io::Error),
#[error("Stdin error: Failed to get finder's stdin")]