summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--module/ConfigParser.py6
1 files changed, 2 insertions, 4 deletions
diff --git a/module/ConfigParser.py b/module/ConfigParser.py
index 20d807b2a..b8da9a32f 100644
--- a/module/ConfigParser.py
+++ b/module/ConfigParser.py
@@ -93,7 +93,6 @@ class ConfigParser:
try:
homeconf = self.parseConfig("pyload.conf")
- print homeconf
self.updateValues(homeconf, self.config)
except Exception, e:
@@ -185,9 +184,8 @@ class ConfigParser:
"type" : typ,
"value" : value}
- except:
- import traceback
- traceback.print_exc()
+ except Exception, e:
+ print e
f.close()