diff options
author | 2021-08-02 14:46:45 +0200 | |
---|---|---|
committer | 2021-08-02 14:46:45 +0200 | |
commit | 4d8b06e99ed9cc7e1c2e60aae64c7c945f697a97 (patch) | |
tree | 793ce26dbd2bf85b04fd28ebf227d519562f32a9 | |
parent | Improve help output of get command (diff) |
Use \N escape
-rw-r--r-- | bot/exts/info/tags.py | 5 |
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, |