diff options
Diffstat (limited to 'discord/shard.py')
| -rw-r--r-- | discord/shard.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/discord/shard.py b/discord/shard.py index 1f73b0de..dfa255f5 100644 --- a/discord/shard.py +++ b/discord/shard.py @@ -282,7 +282,7 @@ class AutoShardedClient(Client): for vc in self.voice_clients: try: await vc.disconnect() - except: + except Exception: pass to_close = [shard.ws.close() for shard in self.shards.values()] |