summaryrefslogtreecommitdiff
path: root/esds
diff options
context:
space:
mode:
Diffstat (limited to 'esds')
-rw-r--r--esds/simulator.py2
1 files changed, 1 insertions, 1 deletions
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):