summaryrefslogtreecommitdiff
path: root/src/conf.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/conf.rs')
-rw-r--r--src/conf.rs6
1 files changed, 1 insertions, 5 deletions
diff --git a/src/conf.rs b/src/conf.rs
index 08d31085..2ece4864 100644
--- a/src/conf.rs
+++ b/src/conf.rs
@@ -401,11 +401,7 @@ This is required so that you don't accidentally start meli and find out later th
let mut file = OpenOptions::new().append(true).open(&path)?;
file.write_all("[composing]\nsend_mail = 'false'\n".as_bytes())
.map_err(|err| {
- Error::new(format!(
- "Could not append to {}: {}",
- path.display(),
- err
- ))
+ Error::new(format!("Could not append to {}: {}", path.display(), err))
})?;
return FileSettings::validate(path, interactive, clear_extras);
}