From 374efd970e8248331c1dc08d666c1674d68b0e4e Mon Sep 17 00:00:00 2001 From: ThomasV Date: Fri, 25 Jul 2014 15:16:52 +0200 Subject: [PATCH] fix daemon timeout --- lib/daemon.py | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/daemon.py b/lib/daemon.py index 008b3eed1..d02f18892 100644 --- a/lib/daemon.py +++ b/lib/daemon.py @@ -214,6 +214,7 @@ class NetworkServer: else: t = time.time() continue + t = time.time() client = ClientThread(self, self.network, connection) client.start()