From 1a7514dc2e351619b3060960d4be2bb5e872229e Mon Sep 17 00:00:00 2001 From: glyph Date: Tue, 23 Nov 2021 20:40:01 +0200 Subject: [PATCH] tweak error output --- src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.rs b/src/main.rs index 3bae31a..7f843e2 100644 --- a/src/main.rs +++ b/src/main.rs @@ -2,7 +2,7 @@ use std::process; fn main() { if let Err(e) = nyf::run() { - eprintln!("error: {}", e); + eprintln!("{}", e); process::exit(1); } }