diff options
author | 2015-04-12 18:34:55 +0200 | |
---|---|---|
committer | 2015-04-12 18:34:55 +0200 | |
commit | 3a82d5f45ffed16d654220efa92ef6b75ea3163b (patch) | |
tree | 8ab6550e7afa428240b105e77d2e204713eb257c /pyload/manager/thread/Info.py | |
parent | fix, fix and more fixes (diff) | |
download | pyload-3a82d5f45ffed16d654220efa92ef6b75ea3163b.tar.xz |
import fixes + code-cleanup
Diffstat (limited to 'pyload/manager/thread/Info.py')
-rw-r--r-- | pyload/manager/thread/Info.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pyload/manager/thread/Info.py b/pyload/manager/thread/Info.py index af958fa74..edc9489e9 100644 --- a/pyload/manager/thread/Info.py +++ b/pyload/manager/thread/Info.py @@ -45,7 +45,7 @@ class InfoThread(PluginThread): for url, plugintype, pluginname in self.data: # filter out container plugins if plugintype == 'container': - container.extend([(name, url) for url in plugins[name]]) + container.appen((pluginname, url)) else: if (plugintype, pluginname) in plugins: plugins[(plugintype, pluginname)].append(url) |