From 451c4c9d543b75669cc3f115b29b9d46438c307a Mon Sep 17 00:00:00 2001 From: FixedThink <41233185+FixedThink@users.noreply.github.com> Date: Mon, 5 Nov 2018 22:58:10 +0100 Subject: [PATCH] [Trivia] Fix text formatting issue (#2269) The "Question number {}" message was being emboldened twice from the left side, making the bot send messages with two redundant asterisks. --- redbot/cogs/trivia/session.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/redbot/cogs/trivia/session.py b/redbot/cogs/trivia/session.py index 4cfcfd6a4..46274007f 100644 --- a/redbot/cogs/trivia/session.py +++ b/redbot/cogs/trivia/session.py @@ -114,7 +114,7 @@ class TriviaSession: async with self.ctx.typing(): await asyncio.sleep(3) self.count += 1 - msg = bold(_("**Question number {num}!").format(num=self.count)) + "\n\n" + question + msg = bold(_("Question number {num}!").format(num=self.count)) + "\n\n" + question await self.ctx.send(msg) continue_ = await self.wait_for_answer(answers, delay, timeout) if continue_ is False: