Fix extra line feed

This commit is contained in:
0x1793d1 2019-12-09 15:36:47 +01:00
parent 1d45639bed
commit 9f359f5502
1 changed files with 1 additions and 1 deletions

View File

@ -108,7 +108,7 @@ impl fmt::Display for Error {
impl fmt::Debug for Error {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
writeln!(f, "{:?}", &self.cause)
write!(f, "{:?}", &self.cause)
}
}