aboutsummaryrefslogtreecommitdiffstats
path: root/botcore
diff options
context:
space:
mode:
Diffstat (limited to 'botcore')
-rw-r--r--botcore/_bot.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/botcore/_bot.py b/botcore/_bot.py
index 55923dd0..a43bb344 100644
--- a/botcore/_bot.py
+++ b/botcore/_bot.py
@@ -138,7 +138,7 @@ class BotBase(commands.Bot):
self.all_commands.pop(alias, None)
async def add_cog(self, cog: commands.Cog) -> None:
- """Adds the given ``cog`` to the bot and logs the operation."""
+ """Add the given ``cog`` to the bot and log the operation."""
await super().add_cog(cog)
log.info(f"Cog loaded: {cog.qualified_name}")