summaryrefslogtreecommitdiffstats
path: root/module/PluginThread.py
diff options
context:
space:
mode:
authorGravatar RaNaN <Mast3rRaNaN@hotmail.de> 2010-08-18 13:06:08 +0200
committerGravatar RaNaN <Mast3rRaNaN@hotmail.de> 2010-08-18 13:06:08 +0200
commitde9ce731216a9204ed35c698b0171bbf3663398d (patch)
treef50c175edef5ce10584ac198171ad082a722ef5f /module/PluginThread.py
parentFileservCom premium + prefetching (diff)
downloadpyload-de9ce731216a9204ed35c698b0171bbf3663398d.tar.xz
folder fix
Diffstat (limited to 'module/PluginThread.py')
-rw-r--r--module/PluginThread.py5
1 files changed, 1 insertions, 4 deletions
diff --git a/module/PluginThread.py b/module/PluginThread.py
index eb2b568d8..8b8ab4025 100644
--- a/module/PluginThread.py
+++ b/module/PluginThread.py
@@ -65,10 +65,7 @@ class PluginThread(Thread):
for key, value in frame.f_locals.items():
dump += "\t%20s = " % key
try:
- if hasattr(value, "__iter__"):
- dump += pformat(value) + ":" + pformat(list(value))
- else:
- dump += pformat(value) + "\n"
+ dump += pformat(value) + "\n"
except:
dump += "<ERROR WHILE PRINTING VALUE>\n"