mirror of
https://github.com/FliegendeWurst/cursive.git
synced 2024-11-23 17:35:00 +00:00
Fix panic warning
This commit is contained in:
parent
76e00682d5
commit
8e252e176b
@ -80,7 +80,7 @@ impl backend::Backend for Backend {
|
|||||||
match self.inner_receiver.try_recv() {
|
match self.inner_receiver.try_recv() {
|
||||||
Ok(event) => event,
|
Ok(event) => event,
|
||||||
Err(TryRecvError::Empty) => None,
|
Err(TryRecvError::Empty) => None,
|
||||||
Err(e) => panic!(e),
|
Err(e) => panic!("{}", e),
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user