aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Amrou Bellalouna <[email protected]>2022-10-27 08:47:31 +0100
committerGravatar Amrou Bellalouna <[email protected]>2022-10-27 08:48:30 +0100
commitc087ebdc68f7397bad6001b75ddef8e0ab9ea97c (patch)
treeace303a4e887b74b159d399e4e04908a0b4a1581
parentremove the "n° " from rules help (diff)
remove blank line between different rule keywords
-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 3d23632bc..9699ae800 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 {index}**: {', '.join(keywords)}\n\n"
+ help_string += f"**Rule {index}**: {', '.join(keywords)}\n\r"
self.rules.help = help_string