This is an automated email from the git hooks/post-receive script. x2go pushed a change to branch brokerclient in repository python-x2go. from 1ea5f92 Fully rework backend concept in Python X2Go. Breaks compatibility with earlier versions of Python X2Go concerning backends (probably not really used by third-party products, if at all). new bb4b79e don't raise an exception if tf-auth is requested new a764584 provide BACKENDS in main module The 2 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference. Summary of changes: x2go/__init__.py | 1 + x2go/backends/control/plain.py | 1 - 2 files changed, 1 insertion(+), 1 deletion(-) -- Alioth's /srv/git/_hooks_/post-receive-email on /srv/git/code.x2go.org/python-x2go.git
This is an automated email from the git hooks/post-receive script. x2go pushed a commit to branch brokerclient in repository python-x2go. commit a76458474bf99cd0db788b25b7b13e7bbaede2d2 Author: Mike Gabriel <mike.gabriel@das-netzwerkteam.de> Date: Wed Feb 5 16:23:40 2014 +0100 provide BACKENDS in main module --- x2go/__init__.py | 1 + 1 file changed, 1 insertion(+) diff --git a/x2go/__init__.py b/x2go/__init__.py index 50ec232..ae5cd9a 100644 --- a/x2go/__init__.py +++ b/x2go/__init__.py @@ -207,6 +207,7 @@ from defaults import LOCAL_HOME from defaults import X2GO_CLIENT_ROOTDIR from defaults import X2GO_SESSIONS_ROOTDIR from defaults import X2GO_SSH_ROOTDIR +from defaults import BACKENDS if X2GOCLIENT_OS == 'Windows': from xserver import X2GoClientXConfig, X2GoXServer -- Alioth's /srv/git/_hooks_/post-receive-email on /srv/git/code.x2go.org/python-x2go.git
This is an automated email from the git hooks/post-receive script. x2go pushed a commit to branch brokerclient in repository python-x2go. commit bb4b79e1730eaba3cd40282483be77c36227b68c Author: Mike Gabriel <mike.gabriel@das-netzwerkteam.de> Date: Wed Feb 5 16:23:14 2014 +0100 don't raise an exception if tf-auth is requested --- x2go/backends/control/plain.py | 1 - 1 file changed, 1 deletion(-) diff --git a/x2go/backends/control/plain.py b/x2go/backends/control/plain.py index 5aa4785..d2784f6 100644 --- a/x2go/backends/control/plain.py +++ b/x2go/backends/control/plain.py @@ -927,7 +927,6 @@ class X2GoControlSession(paramiko.SSHClient): if type(e) == paramiko.SSHException and str(e).startswith('Two-factor authentication requires a password'): self.logger('X2Go Server requests two-factor authentication', loglevel=log.loglevel_NOTICE) _twofactorauth = True - raise e if passphrase is not None: self.logger('unlock SSH private key file with provided password', loglevel=log.loglevel_INFO) try: -- Alioth's /srv/git/_hooks_/post-receive-email on /srv/git/code.x2go.org/python-x2go.git