From d08381108fc5e576928d80475241fd867ad0ee59 Mon Sep 17 00:00:00 2001 From: Bastian Schroll Date: Thu, 20 Sep 2018 14:19:51 +0200 Subject: [PATCH] fix false type from _clients in server.py --- boswatch/network/server.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/boswatch/network/server.py b/boswatch/network/server.py index 9dd6567..429ce85 100644 --- a/boswatch/network/server.py +++ b/boswatch/network/server.py @@ -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()