Ran `cargo fmt`.

This commit is contained in:
eth-p 2018-09-11 13:47:35 -07:00
parent c1e1f753cf
commit 1e74f0e2a9
No known key found for this signature in database
GPG Key ID: 1F8DF8091CD46FBC
1 changed files with 5 additions and 6 deletions

View File

@ -245,12 +245,11 @@ impl<'a> Printer for InteractivePrinter<'a> {
for &(style, region) in regions.iter() { for &(style, region) in regions.iter() {
let text = &*self.preprocess(region, &mut cursor_total); let text = &*self.preprocess(region, &mut cursor_total);
write!(handle, "{}", as_terminal_escaped( write!(
style, handle,
&*text, "{}",
true_color, as_terminal_escaped(style, &*text, true_color, colored_output,)
colored_output, )?;
))?;
} }
} else { } else {
for &(style, region) in regions.iter() { for &(style, region) in regions.iter() {