summaryrefslogtreecommitdiffstats
path: root/pyLoadCore.py
diff options
context:
space:
mode:
authorGravatar RaNaN <Mast3rRaNaN@hotmail.de> 2010-08-20 23:30:30 +0200
committerGravatar RaNaN <Mast3rRaNaN@hotmail.de> 2010-08-20 23:30:30 +0200
commit17b917e86aae70b653b3c395a93ef9d2cb4bdb81 (patch)
tree340bd931d299dfc6f2de7fef950e04d468d7c17c /pyLoadCore.py
parentsome win preparation (diff)
downloadpyload-17b917e86aae70b653b3c395a93ef9d2cb4bdb81.tar.xz
fixes
Diffstat (limited to 'pyLoadCore.py')
-rwxr-xr-xpyLoadCore.py7
1 files changed, 6 insertions, 1 deletions
diff --git a/pyLoadCore.py b/pyLoadCore.py
index e102d2a3e..6183e5636 100755
--- a/pyLoadCore.py
+++ b/pyLoadCore.py
@@ -152,7 +152,12 @@ class Core(object):
print "This is your first start, running configuration assistent now."
self.config = ConfigParser()
s = Setup(pypath, self.config)
- res = s.start()
+ try:
+ res = s.start()
+ except:
+ res = False
+ print_exc()
+ print "Setup failed"
if not res:
remove("pyload.conf")
exit()