diff options
author | 2022-10-23 12:19:22 +0100 | |
---|---|---|
committer | 2022-10-23 12:19:22 +0100 | |
commit | 4a72d9276ce82b9232bfc55ce88233bb8b452524 (patch) | |
tree | 4d35ced89243bf2f7ddce8baeb80d8a501d19fcd | |
parent | remove Information Cog loading log (diff) |
remove the "n° " from rules help
-rw-r--r-- | bot/exts/info/information.py | 2 |
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 |