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.
This commit is contained in:
Chris Beaven 2015-10-19 10:51:05 +13:00
parent 47ae32a900
commit 876a2c8ed0
1 changed files with 3 additions and 3 deletions

View File

@ -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: