Fix typo when choosing KqueueSelector

pull/21059/head
Toshio Kuratomi 8 years ago
parent 39ea50b731
commit 6227c6006b

@ -652,7 +652,7 @@ if hasattr(select, "kqueue"):
# select() also can't accept a FD > FD_SETSIZE (usually around 1024)
if 'KqueueSelector' in globals(): # Platform-specific: Mac OS and BSD
DefaultSelector = KqueueSelector
if 'DevpollSelector' in globals():
elif 'DevpollSelector' in globals():
DefaultSelector = DevpollSelector
elif 'EpollSelector' in globals(): # Platform-specific: Linux
DefaultSelector = EpollSelector

Loading…
Cancel
Save