From c90327614160e67703c30911a9727eada50cc3b1 Mon Sep 17 00:00:00 2001 From: Bastian Schroll Date: Thu, 20 Sep 2018 14:19:51 +0200 Subject: [PATCH] Revert "fix false type from _clients in server.py" This reverts commit d08381108fc5e576928d80475241fd867ad0ee59. --- 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 429ce85..9dd6567 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()