fix false type from _clients in server.py

This commit is contained in:
Bastian Schroll 2018-09-20 14:19:51 +02:00
parent f0081d6e6d
commit d08381108f

View file

@ -26,7 +26,7 @@ _dataPackets = []
_lockDataPackets = threading.Lock()
# module wide global list for all currently connected clients
_clients = {} # _clients[ThreadName] = {"address", "timestamp"}
_clients = [] # _clients[ThreadName] = {"address", "timestamp"}
_lockClients = threading.Lock()