Merge pull request 'refactor: obey clippy' (#4) from fix into master

Reviewed-on: https://gitea.grael.cc/grael/tmux-feat: copyrat/pulls/4
This commit is contained in:
graelo 2021-04-12 20:39:48 +00:00
commit 9f466aea82

View file

@ -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() {