remove raise, it does not kill app, but raise is unnecessary here

This commit is contained in:
Kamil Sopko 2016-03-01 18:15:38 +01:00
parent 3878ddb782
commit fd869ad88c
1 changed files with 1 additions and 1 deletions

View File

@ -663,7 +663,7 @@ class App(QtCore.QObject):
result = self.tcl.eval("set errorInfo")
self.log.error("Exec command Exception: %s" % (str(e)+ '\n' + result + '\n'))
self.shell.append_error('ERROR: ' + str(e) + '\n' + result + '\n')
raise e
#show error in console and just return
return
"""