diff options
author | spoob <spoob@gmx.de> | 2009-05-27 22:19:24 +0200 |
---|---|---|
committer | spoob <spoob@gmx.de> | 2009-05-27 22:19:24 +0200 |
commit | 89e728b615355befb562c11c8076f661ee61f24f (patch) | |
tree | 52c11f16f2181f00ec8624f2ee092d63382ce06a /module | |
parent | fixed log bug (diff) | |
download | pyload-89e728b615355befb562c11c8076f661ee61f24f.tar.xz |
created uniform plugin config, fixed some bugs
Diffstat (limited to 'module')
-rw-r--r-- | module/thread_list.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/module/thread_list.py b/module/thread_list.py index 7031b166e..4cd1f1978 100644 --- a/module/thread_list.py +++ b/module/thread_list.py @@ -88,11 +88,11 @@ class Thread_List(object): if not pyfile.plugin.multi_dl: self.occ_plugins.remove(pyfile.modul.__name__) - + self.py_downloading.remove(pyfile) self.parent.logger.info('finished downloading ' + pyfile.url + ' @'+str(pyfile.status.get_speed())+'kb/s') - if pyfile.plugin.plugin_type == "container": + if pyfile.plugin.plugin_config['type'] == "container": self.parent.extend_links(pyfile.plugin.links) #remove from list, logging etc |