The branch, master has been updated via 4ccf6c292b3576265e6947d689e8fd88dda387fc (commit) from cf7fdf0842919dff58c0733ddfd083d4583cd40b (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 4ccf6c292b3576265e6947d689e8fd88dda387fc Author: Mike Gabriel <mike.gabriel@das-netzwerkteam.de> Date: Thu Jun 23 01:08:07 2011 +0200 Re-introduce fix for failing forwarding tunnels (on tunnel shutdown). ----------------------------------------------------------------------- Summary of changes: x2go/forward.py | 3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) The diff of changes is: diff --git a/x2go/forward.py b/x2go/forward.py index 85ae7ba..09950d5 100644 --- a/x2go/forward.py +++ b/x2go/forward.py @@ -164,7 +164,8 @@ class X2goFwServer(StreamServer): #if self.chan is not None and _X2GOCLIENT_OS != "Windows": if self.chan is not None: try: - self.chan.close() + if _X2GOCLIENT_OS != 'Windows': + self.chan.close() self.chan = None except EOFError: pass 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).