Use writeln!() instead of write!()

This commit is contained in:
Matthias Beyer 2018-02-20 19:24:34 +01:00
parent f38a4eb723
commit 00b86709b6
1 changed files with 2 additions and 2 deletions

View File

@ -36,10 +36,10 @@ impl<'a, T> Display for ImagTrace<'a, T>
where T: ChainedError
{
fn fmt(&self, fmt: &mut Formatter) -> FmtResult {
try!(write!(fmt, "{}: {}", Red.blink().paint("ERROR[ 0]"), self.0));
try!(writeln!(fmt, "{}: {}", Red.blink().paint("ERROR[ 0]"), self.0));
for (i, e) in self.0.iter().enumerate().skip(1) {
try!(write!(fmt, "{}: {}", Red.blink().paint(format!("ERROR[{:>4}]", i)), e));
try!(writeln!(fmt, "{}: {}", Red.blink().paint(format!("ERROR[{:>4}]", i)), e));
}
if let Some(backtrace) = self.0.backtrace() {