diff options
author | mkaay <mkaay@mkaay.de> | 2010-05-08 00:33:37 +0200 |
---|---|---|
committer | mkaay <mkaay@mkaay.de> | 2010-05-08 00:33:37 +0200 |
commit | 7cc68adf36b1d9327f8061e4a177d59e76ab5b6a (patch) | |
tree | 5311cc2c9971384072bb90a2626e909bd178be0a | |
parent | UploadedTo api fix (diff) | |
download | pyload-7cc68adf36b1d9327f8061e4a177d59e76ab5b6a.tar.xz |
fix
-rw-r--r-- | module/ThreadManager.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/module/ThreadManager.py b/module/ThreadManager.py index 6e07f1e72..31a2f004a 100644 --- a/module/ThreadManager.py +++ b/module/ThreadManager.py @@ -109,7 +109,7 @@ class ThreadManager(Thread): self.lock.acquire() if not pyfile.plugin.multi_dl: - self.occ_plugins.remove(pyfile.modul.__name__) + self.occ_plugins.remove(pyfile.plugin.__name__) pyfile.active = False |