The branch, master has been updated via f5950620dc1520bb5ea57f61e13bfe82715ec7a2 (commit) from c637f0d561f171465ad8edc57087e5a02fb8e51d (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit f5950620dc1520bb5ea57f61e13bfe82715ec7a2 Author: Mike Gabriel <mike.gabriel@das-netzwerkteam.de> Date: Thu Mar 22 00:09:33 2012 +0100 do not redirect stdout/stderr, do not destroy wx objects ----------------------------------------------------------------------- Summary of changes: pyhoca/wxgui/frontend.py | 4 +--- 1 files changed, 1 insertions(+), 3 deletions(-) The diff of changes is: diff --git a/pyhoca/wxgui/frontend.py b/pyhoca/wxgui/frontend.py index 5ba1065..f74a58a 100644 --- a/pyhoca/wxgui/frontend.py +++ b/pyhoca/wxgui/frontend.py @@ -155,7 +155,7 @@ class PyHocaGUI(wx.App, x2go.X2goClient): x2go.X2goClient.__init__(self, **_x2goclient_kwargs) - wx.App.__init__(self, clearSigInt=False) + wx.App.__init__(self, redirect=False, clearSigInt=False) if not self.args.disable_splash: splash.PyHocaGUI_SplashScreen() @@ -300,7 +300,6 @@ class PyHocaGUI(wx.App, x2go.X2goClient): # close open password dialogs (or other remaining windows) for _win in self._sub_windows: _win.Close() - _win.Destroy() for session_obj in [ _s for _s in self._X2goClient__client_running_sessions(return_objects=True) if _s.is_associated() ]: profile_name = session_obj.get_profile_name() if not self._hide_notifications_map.has_key(profile_name): @@ -309,7 +308,6 @@ class PyHocaGUI(wx.App, x2go.X2goClient): gevent.spawn(session_obj.suspend) x2go.x2go_cleanup() self.about.Close() - self.about.Destroy() self.taskbar.Close() # the taskbar's OnExit method... hooks/post-receive -- pyhoca-gui.git (Python X2Go Client (wxPython GUI)) This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "pyhoca-gui.git" (Python X2Go Client (wxPython GUI)).