summaryrefslogtreecommitdiffstats
path: root/module/PluginThread.py
diff options
context:
space:
mode:
authorGravatar Jeix <devnull@localhost> 2011-12-24 11:25:04 +0100
committerGravatar Jeix <devnull@localhost> 2011-12-24 11:25:04 +0100
commit9da54933b2bcf58fb0d2342942815ce9e333a400 (patch)
treeebeeb7c7e572b7193c2fb736e2adcf91b5b38624 /module/PluginThread.py
parentmerge hotfixes in (diff)
downloadpyload-9da54933b2bcf58fb0d2342942815ce9e333a400.tar.xz
ShareOnline Premium, OronCom updates
Diffstat (limited to 'module/PluginThread.py')
-rw-r--r--module/PluginThread.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/module/PluginThread.py b/module/PluginThread.py
index 984b88e16..2acd04e53 100644
--- a/module/PluginThread.py
+++ b/module/PluginThread.py
@@ -134,9 +134,9 @@ class PluginThread(Thread):
except Exception, e:
dump += "<ERROR WHILE PRINTING VALUE> " + str(e) + "\n"
- if pyfile.pluginname in self.m.core.config.plugin:
+ if pyfile.pluginname in self.m.core.config.values.keys():
dump += "\n\nCONFIG: \n\n"
- dump += pformat(self.m.core.config.values) + "\n"
+ dump += pformat(self.m.core.config.values[pyfile.pluginname]) + "\n"
return dump