From 0cee5d95ccea648dec00ead7592e18a6207a6ae6 Mon Sep 17 00:00:00 2001 From: Juan Pablo Caram Date: Mon, 19 Jan 2015 17:49:49 -0500 Subject: [PATCH] Not re-raising TCL errors. Solves issue #82. --- FlatCAMApp.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/FlatCAMApp.py b/FlatCAMApp.py index a2b4c825..9133e25e 100644 --- a/FlatCAMApp.py +++ b/FlatCAMApp.py @@ -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 """