The branch, master has been updated via f346d474b4719b1acf6d000999fa7bccbece3b45 (commit) from a32d510c50d78d4702f15cdd52b247026e81caf3 (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 f346d474b4719b1acf6d000999fa7bccbece3b45 Author: Mike Gabriel <mike.gabriel@das-netzwerkteam.de> Date: Tue Jan 22 09:03:27 2013 +0100 make sure server-info works with X2Go server 4.0.x.y ----------------------------------------------------------------------- Summary of changes: pyhoca/wxgui/serverinfo.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) The diff of changes is: diff --git a/pyhoca/wxgui/serverinfo.py b/pyhoca/wxgui/serverinfo.py index 4521cc5..f235c85 100644 --- a/pyhoca/wxgui/serverinfo.py +++ b/pyhoca/wxgui/serverinfo.py @@ -154,7 +154,8 @@ class PyHocaGUI_DialogBoxServerInfo(wx.Dialog): self.infoArea.AppendText(halftab+_(u'Server Core')+':'+newline) self.infoArea.AppendText(newline) self.infoArea.AppendText(2*halftab+'%s (%s)\n' % ('x2goserver', server_components['x2goserver'])) - self.infoArea.AppendText(2*halftab+'%s (%s)\n' % ('x2goserver-common', server_components['x2goserver-common'])) + if 'x2goserver-common' in server_components.keys(): + self.infoArea.AppendText(2*halftab+'%s (%s)\n' % ('x2goserver-common', server_components['x2goserver-common'])) self.infoArea.AppendText(2*halftab+'%s (%s)\n' % ('x2goagent', server_components['x2goagent'])) self.infoArea.AppendText('\n') if server_extensions: 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)).