Browse Source

Don't re-raise in Client.connect if it's a clean close code.

pull/649/head
Rapptz 8 years ago
parent
commit
2e57fa6dfd
  1. 3
      discord/client.py

3
discord/client.py

@ -396,6 +396,9 @@ class Client:
if not reconnect:
yield from self.close()
if isinstance(e, ConnectionClosed) and e.code == 1000:
# clean close, don't re-raise this
return
raise
if self.is_closed():

Loading…
Cancel
Save