From 185b607544fb3b3e8cd5863a954715e41c7977d4 Mon Sep 17 00:00:00 2001 From: Kreusada Ignad Amredes <67752638+Kreusada@users.noreply.github.com> Date: Mon, 26 Feb 2024 23:09:36 +0000 Subject: [PATCH] Fix markdown formatting in `[p]streamalert list` (#6292) --- redbot/cogs/streams/streams.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/redbot/cogs/streams/streams.py b/redbot/cogs/streams/streams.py index 60ceb619d..54e32f6ec 100644 --- a/redbot/cogs/streams/streams.py +++ b/redbot/cogs/streams/streams.py @@ -418,10 +418,10 @@ class Streams(commands.Cog): return for channel_id, stream_platform in streams_list.items(): - msg += f"** - #{ctx.guild.get_channel(channel_id)}**\n" + msg += f"- {ctx.guild.get_channel(channel_id).mention}\n" for platform, streams in stream_platform.items(): - msg += f"\t** - {platform}**\n" - msg += f"\t\t{humanize_list(streams)}\n" + msg += f" - **{platform}**\n" + msg += f" {humanize_list(streams)}\n" for page in pagify(msg): await ctx.send(page)