Not re-raising TCL errors. Solves issue #82.

This commit is contained in:
Juan Pablo Caram 2015-01-19 17:49:49 -05:00
parent 05d6adda8b
commit 0cee5d95cc
1 changed files with 4 additions and 1 deletions

View File

@ -139,6 +139,10 @@ class App(QtCore.QObject):
App.log.debug("Started in " + os.getcwd())
os.chdir(self.app_home)
####################
## Initialize GUI ##
####################
QtCore.QObject.__init__(self)
self.ui = FlatCAMGUI(self.version)
@ -586,7 +590,6 @@ class App(QtCore.QObject):
self.shell.append_output(result + '\n')
except Tkinter.TclError, e:
self.shell.append_error('ERROR: ' + str(e) + '\n')
raise
return
"""