diff options
author | RaNaN <Mast3rRaNaN@hotmail.de> | 2010-09-24 22:34:07 +0200 |
---|---|---|
committer | RaNaN <Mast3rRaNaN@hotmail.de> | 2010-09-24 22:34:07 +0200 |
commit | 675533caff5ec814190f01d8e99941807b2e6277 (patch) | |
tree | 89c252b46d7ee5a996ba11f79c9926409c260ec5 /module/ConfigParser.py | |
parent | gui minimize fix, settings saveable, utf8 in config (diff) | |
download | pyload-675533caff5ec814190f01d8e99941807b2e6277.tar.xz |
removed prints
Diffstat (limited to 'module/ConfigParser.py')
-rw-r--r-- | module/ConfigParser.py | 6 |
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() |