diff --git a/src/ui/vc.rs b/src/ui/vc.rs index c8f7378..970f4a7 100644 --- a/src/ui/vc.rs +++ b/src/ui/vc.rs @@ -468,7 +468,7 @@ impl<'a> ViewController<'a> { let key_res = next_key.unwrap(); if let Err(err) = key_res { // Termion not being able to read from stdin is an unrecoverable error. - panic!(err); + panic!("{}", err); } match key_res.unwrap() {