tweak error output

This commit is contained in:
glyph 2021-11-23 20:40:01 +02:00
parent 0cffc6d02b
commit 1a7514dc2e
1 changed files with 1 additions and 1 deletions

View File

@ -2,7 +2,7 @@ use std::process;
fn main() {
if let Err(e) = nyf::run() {
eprintln!("error: {}", e);
eprintln!("{}", e);
process::exit(1);
}
}