From de9ce731216a9204ed35c698b0171bbf3663398d Mon Sep 17 00:00:00 2001 From: RaNaN Date: Wed, 18 Aug 2010 13:06:08 +0200 Subject: folder fix --- module/PluginThread.py | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) (limited to 'module/PluginThread.py') 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 += "\n" -- cgit v1.2.3