From 4dfaffd5f23d184c05b32f1a6a4b69aabaf74124 Mon Sep 17 00:00:00 2001 From: Rapptz Date: Sat, 20 May 2017 12:06:58 -0400 Subject: [PATCH] Only do loop cleanup in finally block when on windows. Should also fix #545. --- discord/client.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/discord/client.py b/discord/client.py index ea216dd13..85d03056f 100644 --- a/discord/client.py +++ b/discord/client.py @@ -498,7 +498,8 @@ class Client: is blocking. That means that registration of events or anything being called after this function call will not execute until it returns. """ - if sys.platform != 'win32': + is_windows = sys.platform == 'win32' + if not is_windows: self.loop.add_signal_handler(signal.SIGINT, self._do_cleanup) self.loop.add_signal_handler(signal.SIGTERM, self._do_cleanup) @@ -507,7 +508,8 @@ class Client: except KeyboardInterrupt: pass finally: - self._do_cleanup() + if is_windows: + self._do_cleanup() # properties