diff options
author | 2024-04-12 23:36:02 +0530 | |
---|---|---|
committer | 2024-04-13 09:11:31 +0800 | |
commit | 4473f10e3b844349f725b2eb832e344799706746 (patch) | |
tree | 9f1cdd1d2496baac46059f9c23b6fddd7d4f5425 | |
parent | Merge pull request #3010 from python-discord/dependabot/pip/idna-3.7 (diff) |
Fixed typos in tags embed.
-rw-r--r-- | bot/exts/info/tags.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bot/exts/info/tags.py b/bot/exts/info/tags.py index 56a2f044c..5790f4c1c 100644 --- a/bot/exts/info/tags.py +++ b/bot/exts/info/tags.py @@ -234,7 +234,7 @@ class Tags(Cog): if not tag.on_cooldown_in(channel) ) return Embed( - title="Did you mean ...", + title="Did you mean...", description=suggested_tags_text ) @@ -264,7 +264,7 @@ class Tags(Cog): group_accessible = False result_lines.append(f"\n\N{BULLET} **{current_group}**") else: - result_lines.append("\n\N{BULLET}") + result_lines.append("\n") if tag.accessible_by(member): result_lines.append(f"**\N{RIGHT-POINTING DOUBLE ANGLE QUOTATION MARK}** {identifier.name}") |