The branch, master has been updated via f7f2e07355a7b60c31d8fbc44ea20818d0807fca (commit) from 66ad55f6bd82f111355c6aa3a96c7664d0d2a4d4 (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 f7f2e07355a7b60c31d8fbc44ea20818d0807fca Author: Mike Gabriel <mike.gabriel@das-netzwerkteam.de> Date: Fri Mar 23 00:29:38 2012 +0100 more path normalizing ----------------------------------------------------------------------- Summary of changes: x2go/client.py | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) The diff of changes is: diff --git a/x2go/client.py b/x2go/client.py index 3504ac2..de17a43 100644 --- a/x2go/client.py +++ b/x2go/client.py @@ -270,9 +270,9 @@ class X2goClient(object): self._detect_backend_classes() - self.client_rootdir = client_rootdir or os.path.join(_LOCAL_HOME, _X2GO_CLIENT_ROOTDIR) - self.sessions_rootdir = sessions_rootdir or os.path.join(_LOCAL_HOME, _X2GO_SESSIONS_ROOTDIR) - self.ssh_rootdir = ssh_rootdir or os.path.join(_LOCAL_HOME, _X2GO_SSH_ROOTDIR) + self.client_rootdir = client_rootdir or os.path.normpath(os.path.join(_LOCAL_HOME, _X2GO_CLIENT_ROOTDIR)) + self.sessions_rootdir = sessions_rootdir or os.path.normpath(os.path.join(_LOCAL_HOME, _X2GO_SESSIONS_ROOTDIR)) + self.ssh_rootdir = ssh_rootdir or os.path.normpath(os.path.join(_LOCAL_HOME, _X2GO_SSH_ROOTDIR)) self.pulseaudio_installdir = pulseaudio_installdir hooks/post-receive -- python-x2go.git (Python X2Go Client API) 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 "python-x2go.git" (Python X2Go Client API).