From 4d8b06e99ed9cc7e1c2e60aae64c7c945f697a97 Mon Sep 17 00:00:00 2001 From: Numerlor <25886452+Numerlor@users.noreply.github.com> Date: Mon, 2 Aug 2021 14:46:45 +0200 Subject: Use \N escape --- bot/exts/info/tags.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) 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, -- cgit v1.2.3