The branch, master has been updated via cd63f79b6d3198664fe026e0842c705f7924d86b (commit) from 1724680c0d7d7b1182b2dd7a6032a51ed7224478 (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 cd63f79b6d3198664fe026e0842c705f7924d86b Author: Mike Gabriel <mike.gabriel@das-netzwerkteam.de> Date: Thu Apr 12 15:31:28 2012 +0200 fix detection of shared folders on Windows ----------------------------------------------------------------------- Summary of changes: x2go/session.py | 3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) The diff of changes is: diff --git a/x2go/session.py b/x2go/session.py index f5b621f..567b9d4 100644 --- a/x2go/session.py +++ b/x2go/session.py @@ -1972,7 +1972,8 @@ class X2goSession(object): mount = mount.split('|')[1] if _X2GOCLIENT_OS == 'Windows': _driveletter, _path = os.path.splitdrive(shared_folder) - _mount_point = '_windrive_%s_%s' % (_driveletter, _path.replace('\\', '_')) + _mount_point = '_windrive_%s%s' % (_driveletter[0], _path.replace('\\', '_')) + if mount.lower().endswith(_mount_point.lower()): _found = True break 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).