summaryrefslogtreecommitdiffstats
path: root/module/PluginThread.py
diff options
context:
space:
mode:
authorGravatar RaNaN <Mast3rRaNaN@hotmail.de> 2010-08-19 23:46:59 +0200
committerGravatar RaNaN <Mast3rRaNaN@hotmail.de> 2010-08-19 23:46:59 +0200
commita6bf849c4db2fdcd76054dcb82e1111576e1e723 (patch)
tree64571a353552f0385f07216eeb5114bca6558663 /module/PluginThread.py
parentDepositfilesCom premium (diff)
downloadpyload-a6bf849c4db2fdcd76054dcb82e1111576e1e723.tar.xz
debug report + deposit fix
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 8b8ab4025..db8804db5 100644
--- a/module/PluginThread.py
+++ b/module/PluginThread.py
@@ -73,7 +73,7 @@ class PluginThread(Thread):
for name in dir(pyfile.plugin):
attr = getattr(pyfile.plugin, name)
- if not name.endswith("__") and type(attr) not in (InstanceType,MethodType):
+ if not name.endswith("__") and type(attr) != MethodType:
dump += "\t%20s = " % name
dump += pformat(attr) +"\n"
@@ -81,7 +81,7 @@ class PluginThread(Thread):
for name in dir(pyfile):
attr = getattr(pyfile, name)
- if not name.endswith("__") and type(attr) not in (InstanceType,MethodType):
+ if not name.endswith("__") and type(attr) != MethodType:
dump += "\t%20s = " % name
dump += pformat(attr) +"\n"