diff options
Diffstat (limited to 'server.py')
-rwxr-xr-x | server.py | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -8,7 +8,7 @@ LOG_AUTH=syslog.LOG_AUTH from websock import WebSocketServer, WebSocket ## Local Modules -from utils import stdout, now +from utils import stdout, now, clients from consts import MAX_CLIENTS, PACKET_ACK import protocol, security, traceback @@ -20,7 +20,6 @@ f.close() PORT=p["PORT"] SECURE=p["SSL"] -clients = [] ############################################################### # Main Class |