From 2eafcaabbdc673576cbba8b5ab9080a2ce6d4b1e Mon Sep 17 00:00:00 2001 From: Loic Guegan Date: Thu, 1 Sep 2022 17:53:42 +0200 Subject: Making esds compatible with python 3.7 --- esds/simulator.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'esds/simulator.py') diff --git a/esds/simulator.py b/esds/simulator.py index 57dda4e..5032713 100644 --- a/esds/simulator.py +++ b/esds/simulator.py @@ -110,7 +110,7 @@ class Simulator: """ node=Node(src, self.netmat.keys()) self.nodes.append(node) - thread=threading.Thread(target=node.run, daemon=True,args=[args]) + thread=threading.Thread(target=node.run,args=[args]) # There must be "daemon=True" as a parameter, but we removed it to be compatible with older version of python thread.start() def log(self,msg,node=None): -- cgit v1.2.3