use ProactorEventLoop on windows

This commit is contained in:
io 2021-05-19 21:26:51 +00:00
parent 72652ef368
commit 1d6ad4cfd5
1 changed files with 5 additions and 0 deletions

5
bot.py
View File

@ -28,6 +28,11 @@ logging.getLogger('discord').setLevel(logging.INFO)
logger = logging.getLogger(__name__)
logger.setLevel(logging.INFO)
# SelectorEventLoop on windows doesn't support subprocesses lol
if sys.platform == 'win32':
loop = asyncio.ProactorEventLoop()
asyncio.set_event_loop(loop)
class Bot(Bot):
startup_extensions = (
'cogs.emote',