From dce653a0eba722f59e96d7385a89198c7fd6eac8 Mon Sep 17 00:00:00 2001 From: alkatar21 <61387986+alkatar21@users.noreply.github.com> Date: Tue, 1 Sep 2020 21:24:47 +0200 Subject: [PATCH] Don't call close() if we've already been closed in Client.run --- discord/client.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/discord/client.py b/discord/client.py index 739f59c33..59be489a5 100644 --- a/discord/client.py +++ b/discord/client.py @@ -657,7 +657,8 @@ class Client: try: await self.start(*args, **kwargs) finally: - await self.close() + if not self.is_closed(): + await self.close() def stop_loop_on_completion(f): loop.stop()