##// END OF EJS Templates
Better report errors where select is missing POLLHUP/POLERR (win32)....
Fernando Perez -
Show More
@@ -74,7 +74,12 b' import socket, select'
74 import os, threading, subprocess
74 import os, threading, subprocess
75 import re
75 import re
76
76
77 ERRCONDS = select.POLLHUP|select.POLLERR
77 try:
78 ERRCONDS = select.POLLHUP|select.POLLERR
79 except AttributeError:
80 raise ImportError("Vim server not supported on this platform - select "
81 "missing necessary POLLHUP/POLLERR functionality")
82
78 SERVER = None
83 SERVER = None
79 ip = ipapi.get()
84 ip = ipapi.get()
80
85
General Comments 0
You need to be logged in to leave comments. Login now