Print a newline after the retry question
This commit is contained in:
committed by
Your Name
parent
6108637477
commit
590d166bac
@@ -78,7 +78,9 @@ impl Terminal {
|
||||
.bold()
|
||||
)).ok();
|
||||
|
||||
match self.term.read_char()? {
|
||||
let answer = self.term.read_char()?;
|
||||
println!();
|
||||
match answer {
|
||||
'y' | 'Y' => return Ok(true),
|
||||
'n' | 'N' | '\r' | '\n' => return Ok(false),
|
||||
_ => (),
|
||||
|
||||
Reference in New Issue
Block a user