forked from DGNum/colmena
spinner: Work around the lack of newline after completion
This commit is contained in:
parent
57b3ccca85
commit
0d9198c351
1 changed files with 3 additions and 0 deletions
|
@ -186,6 +186,9 @@ impl ProgressOutput for SpinnerOutput {
|
||||||
|
|
||||||
match message {
|
match message {
|
||||||
Message::Complete => {
|
Message::Complete => {
|
||||||
|
// To work around https://github.com/console-rs/indicatif/issues/342
|
||||||
|
println!();
|
||||||
|
|
||||||
return Ok(self);
|
return Ok(self);
|
||||||
}
|
}
|
||||||
Message::Print(line) => {
|
Message::Print(line) => {
|
||||||
|
|
Loading…
Reference in a new issue