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
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
2 additions and
1 deletions
-
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() |
|
|
|