diff options
| -rw-r--r-- | bot/cogs/cogs.py | 8 | 
1 files changed, 4 insertions, 4 deletions
diff --git a/bot/cogs/cogs.py b/bot/cogs/cogs.py index 9c50c7dd8..1f6ccd09c 100644 --- a/bot/cogs/cogs.py +++ b/bot/cogs/cogs.py @@ -75,11 +75,11 @@ class Cogs(Cog):                      self.bot.load_extension(full_cog)                  except ImportError:                      log.exception(f"{ctx.author} requested we load the '{cog}' cog, " -                              f"but the cog module {full_cog} could not be found!") +                                  f"but the cog module {full_cog} could not be found!")                      embed.description = f"Invalid cog: {cog}\n\nCould not find cog module {full_cog}"                  except Exception as e:                      log.exception(f"{ctx.author} requested we load the '{cog}' cog, " -                              "but the loading failed") +                                  "but the loading failed")                      embed.description = f"Failed to load cog: {cog}\n\n{e.__class__.__name__}: {e}"                  else:                      log.debug(f"{ctx.author} requested we load the '{cog}' cog. Cog loaded!") @@ -129,7 +129,7 @@ class Cogs(Cog):                      self.bot.unload_extension(full_cog)                  except Exception as e:                      log.exception(f"{ctx.author} requested we unload the '{cog}' cog, " -                              "but the unloading failed") +                                  "but the unloading failed")                      embed.description = f"Failed to unload cog: {cog}\n\n```{e}```"                  else:                      log.debug(f"{ctx.author} requested we unload the '{cog}' cog. Cog unloaded!") @@ -233,7 +233,7 @@ class Cogs(Cog):                      self.bot.load_extension(full_cog)                  except Exception as e:                      log.exception(f"{ctx.author} requested we reload the '{cog}' cog, " -                              "but the unloading failed") +                                  "but the unloading failed")                      embed.description = f"Failed to reload cog: {cog}\n\n```{e}```"                  else:                      log.debug(f"{ctx.author} requested we reload the '{cog}' cog. Cog reloaded!")  |