diff options
-rw-r--r-- | bot/exts/info/tags.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/exts/info/tags.py b/bot/exts/info/tags.py index 6e9f1cf90..2b610a5fb 100644 --- a/bot/exts/info/tags.py +++ b/bot/exts/info/tags.py @@ -344,7 +344,7 @@ class Tags(Cog): async def list_tags_in_group(self, ctx: Context, group: str) -> None: """Send a paginator with all tags under `group`, that are accessible by `ctx.author`.""" - embed = Embed(title=f"**Tags under *{group}***") + embed = Embed(title=f"Tags under *{group}*") tag_lines = sorted( f"**\N{RIGHT-POINTING DOUBLE ANGLE QUOTATION MARK}** {identifier}" for identifier, tag in self._tags.items() |