Browse Source

Don't call close() if we've already been closed in Client.run

pull/5790/head
alkatar21 5 years ago
committed by GitHub
parent
commit
dce653a0eb
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 3
      discord/client.py

3
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()

Loading…
Cancel
Save