diff options
author | RaNaN <Mast3rRaNaN@hotmail.de> | 2010-12-19 19:59:45 +0100 |
---|---|---|
committer | RaNaN <Mast3rRaNaN@hotmail.de> | 2010-12-19 19:59:45 +0100 |
commit | 34a5b4372aa6e50c072a568c564d6d492743c508 (patch) | |
tree | b7ace2ebd3511b4165cccfb6b44d96c60963dc14 /module/network/helper.py | |
parent | corrected byte range on resume (diff) | |
download | pyload-34a5b4372aa6e50c072a568c564d6d492743c508.tar.xz |
some adjusments
Diffstat (limited to 'module/network/helper.py')
-rw-r--r-- | module/network/helper.py | 1 |
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) |