diff options
Diffstat (limited to 'module/PluginThread.py')
-rw-r--r-- | module/PluginThread.py | 4 |
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" |