summaryrefslogtreecommitdiffstats
path: root/module/network/helper.py
diff options
context:
space:
mode:
Diffstat (limited to 'module/network/helper.py')
-rw-r--r--module/network/helper.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/module/network/helper.py b/module/network/helper.py
index 4b7119a2b..6900467f5 100644
--- a/module/network/helper.py
+++ b/module/network/helper.py
@@ -11,6 +11,7 @@ def callInThread(f, *args, **kwargs):
class FThread(Thread):
def __init__(self):
Thread.__init__(self)
+ self.setDaemon(True)
self.d = Deferred()
def run(self):
ret = f(*args, **kwargs)