aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--bot/exts/info/tags.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/bot/exts/info/tags.py b/bot/exts/info/tags.py
index 655ec2dd7..6e9f1cf90 100644
--- a/bot/exts/info/tags.py
+++ b/bot/exts/info/tags.py
@@ -218,7 +218,10 @@ class Tags(Cog):
title=f"Here are the tags containing the given keyword{'s' * is_plural}:",
)
await LinePaginator.paginate(
- sorted(f"**ยป** {identifier.name}" for identifier, _ in matching_tags),
+ sorted(
+ f"**\N{RIGHT-POINTING DOUBLE ANGLE QUOTATION MARK}** {identifier.name}"
+ for identifier, _ in matching_tags
+ ),
ctx,
embed,
footer_text=FOOTER_TEXT,