diff options
author | 2023-06-05 05:38:43 -0500 | |
---|---|---|
committer | 2023-06-05 10:38:43 +0000 | |
commit | b7d8813ddfb45fcb0245200cc824cb1ab0a8ec85 (patch) | |
tree | 36df55c54b9e40604d4eb4971668c0081656879d | |
parent | Merge pull request #176 from python-discord/ruff-migration (diff) |
lint: fix typo (#180)
-rw-r--r-- | pydis_core/_bot.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pydis_core/_bot.py b/pydis_core/_bot.py index 57336460..10cab457 100644 --- a/pydis_core/_bot.py +++ b/pydis_core/_bot.py @@ -118,7 +118,7 @@ class BotBase(commands.Bot): async def _load_extensions(self, module: types.ModuleType) -> None: """Load all the extensions within the given module and save them to ``self.all_extensions``.""" - log.info("Waiting for guild %d to be avialable before loading extensions.", self.guild_id) + log.info("Waiting for guild %d to be available before loading extensions.", self.guild_id) await self.wait_until_guild_available() log.info("Loading extensions...") |