Fix #1180 working on windows with tornado and python <3.8 again

This commit is contained in:
Ozzie Isaacs 2020-02-08 13:24:01 +01:00
parent 6698773d81
commit 2535bbbcf1
1 changed files with 1 additions and 1 deletions

View File

@ -146,7 +146,7 @@ class WebServer(object):
self.unix_socket_file = None
def _start_tornado(self):
if os.name == 'nt':
if os.name == 'nt' and sys.version_info > (3, 7):
import asyncio
asyncio.set_event_loop_policy(asyncio.WindowsSelectorEventLoopPolicy())
log.info('Starting Tornado server on %s', _readable_listen_address(self.listen_address, self.listen_port))