bump
This commit is contained in:
parent
e4d3e7a86b
commit
4fbc2e47bc
2
Cargo.lock
generated
2
Cargo.lock
generated
@ -297,7 +297,7 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "grip-grab"
|
name = "grip-grab"
|
||||||
version = "0.2.8"
|
version = "0.2.9"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"anyhow",
|
"anyhow",
|
||||||
"clap",
|
"clap",
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "grip-grab"
|
name = "grip-grab"
|
||||||
version = "0.2.8"
|
version = "0.2.9"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
authors = ["Alexandre Pasmantier <alex.pasmant@gmail.com>"]
|
authors = ["Alexandre Pasmantier <alex.pasmant@gmail.com>"]
|
||||||
license = "Apache-2.0"
|
license = "Apache-2.0"
|
||||||
|
@ -131,12 +131,12 @@ impl Printer {
|
|||||||
}
|
}
|
||||||
|
|
||||||
pub fn print(&mut self) -> Result<()> {
|
pub fn print(&mut self) -> Result<()> {
|
||||||
self.writer.print(&self.buffer);
|
self.writer.print(&self.buffer)?;
|
||||||
self.reset_ansi_formatting()
|
self.reset_ansi_formatting()
|
||||||
}
|
}
|
||||||
|
|
||||||
fn reset_ansi_formatting(&mut self) -> Result<()> {
|
fn reset_ansi_formatting(&mut self) -> Result<()> {
|
||||||
self.buffer.reset();
|
self.buffer.reset()?;
|
||||||
self.write_newline_to_buffer()
|
self.write_newline_to_buffer()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user