Browse Source

[commands] Shield against dictionary resize in Bot.close

pull/316/merge
Rapptz 8 years ago
parent
commit
00e30f3106
  1. 4
      discord/ext/commands/bot.py

4
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:

Loading…
Cancel
Save