From 1b8d74793728573c719ac887df8135dfb8618d9d Mon Sep 17 00:00:00 2001 From: 0x1793d1 <2362128+0x1793d1@users.noreply.github.com> Date: Thu, 12 Dec 2019 02:05:39 +0100 Subject: [PATCH] Fix extra line feed (#1209) --- actix-http/src/error.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/actix-http/src/error.rs b/actix-http/src/error.rs index ec6039170..8ec21c004 100644 --- a/actix-http/src/error.rs +++ b/actix-http/src/error.rs @@ -109,7 +109,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) } }