diff options
| author | 2021-08-02 14:52:34 +0200 | |
|---|---|---|
| committer | 2021-08-02 14:52:34 +0200 | |
| commit | 96a8390290f379a90fa0f966b74993dd1ddf9f44 (patch) | |
| tree | 83c0b7c87cf551fc56d7b6a2db14b48cef816e77 | |
| parent | Use \N escape (diff) | |
Remove embed title bolding for group listing
The other embeds don't have a bold title
| -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() |