chore: fix paths

This commit is contained in:
Jesús Pérez Lorenzo 2021-09-12 22:14:34 +01:00
parent d00ec59190
commit 401190f1c8

View File

@ -222,7 +222,7 @@ impl Config {
} }
std::fs::read_to_string(&config_path) std::fs::read_to_string(&config_path)
.unwrap_or_else(|e| { .unwrap_or_else(|e| {
eprintln!("{}",e); eprintln!("Error read {}: {}",&config_path,e);
String::from("") String::from("")
}) })
} }