aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--bot/cogs/extensions.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/bot/cogs/extensions.py b/bot/cogs/extensions.py
index b312e1a1d..fb6cd9aa3 100644
--- a/bot/cogs/extensions.py
+++ b/bot/cogs/extensions.py
@@ -69,7 +69,7 @@ class Extensions(commands.Cog):
@extensions_group.command(name="load", aliases=("l",))
async def load_command(self, ctx: Context, *extensions: Extension) -> None:
- """
+ r"""
Load extensions given their fully qualified or unqualified names.
If '\*' or '\*\*' is given as the name, all unloaded extensions will be loaded.
@@ -86,7 +86,7 @@ class Extensions(commands.Cog):
@extensions_group.command(name="unload", aliases=("ul",))
async def unload_command(self, ctx: Context, *extensions: Extension) -> None:
- """
+ r"""
Unload currently loaded extensions given their fully qualified or unqualified names.
If '\*' or '\*\*' is given as the name, all loaded extensions will be unloaded.
@@ -109,7 +109,7 @@ class Extensions(commands.Cog):
@extensions_group.command(name="reload", aliases=("r",))
async def reload_command(self, ctx: Context, *extensions: Extension) -> None:
- """
+ r"""
Reload extensions given their fully qualified or unqualified names.
If an extension fails to be reloaded, it will be rolled-back to the prior working state.