The branch, master has been updated via b4189b0632564c023a3edc48a9db5c56c28b740e (commit) from 8cfeeadf4e47660f6f4123915c91a326eade3256 (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 b4189b0632564c023a3edc48a9db5c56c28b740e Author: Mike Gabriel <mike.gabriel@das-netzwerkteam.de> Date: Tue Mar 6 12:30:30 2012 +0100 fix faking of WindowsError ----------------------------------------------------------------------- Summary of changes: x2go/mimeboxactions.py | 3 ++- x2go/printactions.py | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) The diff of changes is: diff --git a/x2go/mimeboxactions.py b/x2go/mimeboxactions.py index 319369f..20cb823 100644 --- a/x2go/mimeboxactions.py +++ b/x2go/mimeboxactions.py @@ -37,7 +37,8 @@ if _X2GOCLIENT_OS in ("Windows"): import win32api else: import gevent_subprocess as subprocess - import x2go_exceptions.WindowsError as WindowsError + import x2go_exceptions + WindowsErrror = x2go_exceptions.WindowsError # Python X2Go modules import log diff --git a/x2go/printactions.py b/x2go/printactions.py index 6dcf0cb..45504e9 100644 --- a/x2go/printactions.py +++ b/x2go/printactions.py @@ -42,7 +42,8 @@ if _X2GOCLIENT_OS in ("Windows"): import win32print else: import gevent_subprocess as subprocess - import x2go_exceptions.WindowsError as WindowsError + import x2go_exceptions + WindowsError = x2go_exceptions.WindowsError # Python X2Go modules import log 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).