aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--discord/ext/commands/bot.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/discord/ext/commands/bot.py b/discord/ext/commands/bot.py
index 77123db5..349e5d0d 100644
--- a/discord/ext/commands/bot.py
+++ b/discord/ext/commands/bot.py
@@ -268,13 +268,13 @@ class Bot(GroupMixin, discord.Client):
@asyncio.coroutine
def close(self):
- for extension in self.extensions:
+ for extension in tuple(self.extensions):
try:
self.unload_extension(extension)
except:
pass
- for cog in self.cogs:
+ for cog in tuple(self.cogs):
try:
self.remove_cog(cog)
except: