Browse Source

Missing sys import

Also put the error message in sys.exit rather than printing. This will output it to stderr and make the exit code non-zero
like it should be.
283
Chris Beaven 10 years ago
parent
commit
876a2c8ed0
  1. 6
      lib/websockets.py

6
lib/websockets.py

@ -21,8 +21,8 @@ from collections import defaultdict
try:
from SimpleWebSocketServer import WebSocket, SimpleSSLWebSocketServer
except ImportError:
print "install SimpleWebSocketServer"
sys.exit()
import sys
sys.exit("install SimpleWebSocketServer")
import util
@ -93,7 +93,7 @@ class WsClientThread(util.DaemonThread):
except Queue.Empty:
continue
id = r.get('id')
if id is None:
if id is None:
method = r.get('method')
params = r.get('params')
else:

Loading…
Cancel
Save