# HG changeset patch # User Edouard Tisserant # Date 1333593682 -7200 # Node ID 37dc330e96a29e4c52b4ac5b0c34deaa6aeb00e4 # Parent 1dd31c510ff2c6f13f176065d0d6d2435209227d Reflected recent changes in ProcessLogger changes in StartLocalRuntime diff -r 1dd31c510ff2 -r 37dc330e96a2 Beremiz.py --- a/Beremiz.py Mon Apr 02 01:15:37 2012 +0200 +++ b/Beremiz.py Thu Apr 05 04:41:22 2012 +0200 @@ -586,7 +586,7 @@ self.SetTitle(name) def StartLocalRuntime(self, taskbaricon = True): - if self.local_runtime is None or self.local_runtime.finished: + if (self.local_runtime is None) or (self.local_runtime.exitcode is not None): # create temporary directory for runtime working directory self.local_runtime_tmpdir = tempfile.mkdtemp() # choose an arbitrary random port for runtime @@ -1870,6 +1870,6 @@ frame = Beremiz(None, projectOpen, buildpath) splash.Close() - wx.Yield() + #wx.Yield() frame.Show() app.MainLoop()