summaryrefslogtreecommitdiffstats
path: root/module/thread_list.py
diff options
context:
space:
mode:
authorGravatar mkaay <mkaay@mkaay.de> 2009-12-24 01:41:13 +0100
committerGravatar mkaay <mkaay@mkaay.de> 2009-12-24 01:41:13 +0100
commit5c7e9f0f1325523347a52869cebbf03463550bca (patch)
tree48f33c94330fc41e5af0209d03177c4179c78bc3 /module/thread_list.py
parentdownloads are now aborted correctly, gui: remove downloads, new icons (diff)
downloadpyload-5c7e9f0f1325523347a52869cebbf03463550bca.tar.xz
clean shutdown
Diffstat (limited to 'module/thread_list.py')
-rw-r--r--module/thread_list.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/module/thread_list.py b/module/thread_list.py
index 966157b91..fc4160a6d 100644
--- a/module/thread_list.py
+++ b/module/thread_list.py
@@ -216,6 +216,10 @@ class Thread_List(object):
def scripts_reconnected(self, ip):
map(lambda script: subprocess.Popen([script, ip], stdout=subprocess.PIPE), self.parent.scripts['download_finished'])
+ def stopAllDownloads(self):
+ for pyfile in self.py_downloading:
+ pyfile.plugin.req.abort = True
+
class SpeedManager(Thread):
def __init__(self, parent):
Thread.__init__(self)