aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Amrou Bellalouna <[email protected]>2022-10-23 12:19:22 +0100
committerGravatar Amrou Bellalouna <[email protected]>2022-10-23 12:19:22 +0100
commit4a72d9276ce82b9232bfc55ce88233bb8b452524 (patch)
tree4d35ced89243bf2f7ddce8baeb80d8a501d19fcd
parentremove Information Cog loading log (diff)
remove the "n° " from rules help
-rw-r--r--bot/exts/info/information.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/exts/info/information.py b/bot/exts/info/information.py
index 6e6e13f8a..3d23632bc 100644
--- a/bot/exts/info/information.py
+++ b/bot/exts/info/information.py
@@ -530,7 +530,7 @@ class Information(Cog):
full_rules = await self.bot.api_client.get("rules", params={"link_format": "md"})
for index, (_, keywords) in enumerate(full_rules, start=1):
- help_string += f"**Rule n°{index}**: {', '.join(keywords)}\n\n"
+ help_string += f"**Rule {index}**: {', '.join(keywords)}\n\n"
self.rules.help = help_string