aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/main.rs3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/main.rs b/src/main.rs
index a5c2cf6..535a2dd 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -1,4 +1,3 @@
-// mod argument_parser;
mod configuration;
mod command;
mod constants;
@@ -26,7 +25,7 @@ fn main() -> Result<()> {
match result {
Ok(_) => Ok(()),
Err(e) => {
- eprintln!("Error: {}", e);
+ eprintln!("{}", e);
std::process::exit(1);
}
}