diff options
author | 2019-10-07 09:35:48 -0700 | |
---|---|---|
committer | 2019-10-07 09:35:48 -0700 | |
commit | 2ece22e0c8b58290e7d90d71849d01272d138fe8 (patch) | |
tree | d3d342eccc3269bf9ded698dec0f7afefe0757dc | |
parent | Refactor the extensions list command (diff) |
Use quotes instead of back ticks around asterisk in docstrings
-rw-r--r-- | bot/cogs/extensions.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/bot/cogs/extensions.py b/bot/cogs/extensions.py index 3cbaa810a..a385e50d5 100644 --- a/bot/cogs/extensions.py +++ b/bot/cogs/extensions.py @@ -89,8 +89,8 @@ class Extensions(commands.Cog): If an extension fails to be reloaded, it will be rolled-back to the prior working state. - If `*` is given as the name, all currently loaded extensions will be reloaded. - If `**` is given as the name, all extensions, including unloaded ones, will be reloaded. + If '*' is given as the name, all currently loaded extensions will be reloaded. + If '**' is given as the name, all extensions, including unloaded ones, will be reloaded. """ if not extensions: await ctx.invoke(self.bot.get_command("help"), "extensions reload") @@ -137,8 +137,8 @@ class Extensions(commands.Cog): """ Reload given extensions and return a message with the results. - If `*` is given, all currently loaded extensions will be reloaded along with any other - specified extensions. If `**` is given, all extensions, including unloaded ones, will be + If '*' is given, all currently loaded extensions will be reloaded along with any other + specified extensions. If '**' is given, all extensions, including unloaded ones, will be reloaded. """ failures = {} |