summaryrefslogtreecommitdiffstats
path: root/module/network/helper.py
diff options
context:
space:
mode:
authorGravatar RaNaN <Mast3rRaNaN@hotmail.de> 2010-12-19 19:59:45 +0100
committerGravatar RaNaN <Mast3rRaNaN@hotmail.de> 2010-12-19 19:59:45 +0100
commit34a5b4372aa6e50c072a568c564d6d492743c508 (patch)
treeb7ace2ebd3511b4165cccfb6b44d96c60963dc14 /module/network/helper.py
parentcorrected byte range on resume (diff)
downloadpyload-34a5b4372aa6e50c072a568c564d6d492743c508.tar.xz
some adjusments
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)