Fixes #177 - Don't exit at exception if in "multiple targets" mode (-l or -g)

This commit is contained in:
Bernardo Damele
2010-03-16 12:14:02 +00:00
parent 6d0ea86414
commit 323cf2b7f2
4 changed files with 153 additions and 155 deletions

View File

@@ -72,11 +72,10 @@ def main():
try:
init(cmdLineOptions)
if conf.start:
start()
start()
except exceptionsTuple, e:
e = str(e)
logger.error(e)
except KeyboardInterrupt:
@@ -90,6 +89,7 @@ def main():
logger.error(errMsg)
except:
print
errMsg = unhandledException()
logger.error(errMsg)
traceback.print_exc()