aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--bot/bot.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/bot.py b/bot/bot.py
index b51e41117..e6d77344e 100644
--- a/bot/bot.py
+++ b/bot/bot.py
@@ -145,7 +145,7 @@ class Bot(commands.Bot):
async def close(self) -> None:
"""Close the Discord connection and the aiohttp session, connector, statsd client, and resolver."""
# Done before super().close() to allow tasks finish before the HTTP session closes.
- self.remove_extensions()
+ self._remove_extensions()
# Wait until all tasks that have to be completed before bot is closing is done
log.trace("Waiting for tasks before closing.")