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) } }