aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Numerlor <[email protected]>2021-06-30 22:33:33 +0200
committerGravatar Numerlor <[email protected]>2021-07-06 02:02:12 +0200
commit2e10a303aa7d62339fea5b8c489fe6c7d9dd4f24 (patch)
tree9fea2bfe7d4b9316d47b17fe265b67ac1423cc5c
parentRemove unnecessary typehint (diff)
Add leading » when listing tag suggestions
-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 594a3e409..01d0b97fa 100644
--- a/bot/exts/info/tags.py
+++ b/bot/exts/info/tags.py
@@ -274,7 +274,7 @@ class Tags(Cog):
if not suggested_tags:
return None
suggested_tags_text = "\n".join(
- str(identifier)
+ f"**\N{RIGHT-POINTING DOUBLE ANGLE QUOTATION MARK}** {identifier}"
for identifier, tag in suggested_tags
if tag.accessible_by(ctx.author)
and not tag.on_cooldown_in(ctx.channel)