From de92fc8488963089a6acdf552b4913dd406274cf Mon Sep 17 00:00:00 2001 From: projectmoon Date: Wed, 26 May 2021 07:06:00 +0000 Subject: [PATCH] Remove nested

tags in error messages. --- src/commands/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/commands/mod.rs b/src/commands/mod.rs index 2a6f9f8..e390f40 100644 --- a/src/commands/mod.rs +++ b/src/commands/mod.rs @@ -62,7 +62,7 @@ impl From for ExecutionError { impl ExecutionError { /// Error message in bolded HTML. pub fn html(&self) -> String { - format!("

{}

", self.0) + format!("{}", self.0) } }