diff options
author | RaNaN <Mast3rRaNaN@hotmail.de> | 2013-12-30 19:52:29 +0100 |
---|---|---|
committer | RaNaN <Mast3rRaNaN@hotmail.de> | 2013-12-30 19:52:29 +0100 |
commit | 1e338a279aba747534fd1e7aedc8d7aec319f5f2 (patch) | |
tree | 87f809fabd8c11f45d193475937223bfd097e33c /pyload/threads/AddonThread.py | |
parent | added progress type enum, new DebugCrypter + Hoster, little improvements for ... (diff) | |
download | pyload-1e338a279aba747534fd1e7aedc8d7aec319f5f2.tar.xz |
show progress of decrypting and link checking, added indicator in link grabber
Diffstat (limited to 'pyload/threads/AddonThread.py')
-rw-r--r-- | pyload/threads/AddonThread.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pyload/threads/AddonThread.py b/pyload/threads/AddonThread.py index d8d84cbfa..c82045803 100644 --- a/pyload/threads/AddonThread.py +++ b/pyload/threads/AddonThread.py @@ -21,7 +21,7 @@ class AddonThread(BaseThread): self.active = [] self.progress = 0 - m.localThreads.append(self) + m.addThread(self) self.start() @@ -76,4 +76,4 @@ class AddonThread(BaseThread): for x in local: self.finishFile(x) - self.m.localThreads.remove(self)
\ No newline at end of file + self.finished()
\ No newline at end of file |