aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Numerlor <[email protected]>2021-08-02 14:52:34 +0200
committerGravatar Numerlor <[email protected]>2021-08-02 14:52:34 +0200
commit96a8390290f379a90fa0f966b74993dd1ddf9f44 (patch)
tree83c0b7c87cf551fc56d7b6a2db14b48cef816e77
parentUse \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.py2
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()