The branch, twofactorauth has been updated via efcb8afc6c0efd744ffa60db340efdceaac196ac (commit) from a96f3876b630b7735fa0edd869801bb2f4fd8ac9 (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 efcb8afc6c0efd744ffa60db340efdceaac196ac Author: Mike Gabriel <mike.gabriel@das-netzwerkteam.de> Date: Thu Oct 10 15:59:09 2013 +0200 make incompatible paramiko versions pop up as WARNINGs ----------------------------------------------------------------------- Summary of changes: x2go/backends/control/_stdout.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) The diff of changes is: diff --git a/x2go/backends/control/_stdout.py b/x2go/backends/control/_stdout.py index 098f3a8..91e0a17 100644 --- a/x2go/backends/control/_stdout.py +++ b/x2go/backends/control/_stdout.py @@ -909,7 +909,7 @@ class X2GoControlSessionSTDOUT(paramiko.SSHClient): look_for_keys=False) except TypeError: if _twofactorauth and password and passphrase and password != passphrase: - self.logger('your version of Paramiko/SSH does not support authentication workflows which require SSH key decryption in combination with two-factor authentication', loglevel=log.loglevel_NOTICE) + self.logger('your version of Paramiko/SSH does not support authentication workflows which require SSH key decryption in combination with two-factor authentication', loglevel=log.loglevel_WARNING) paramiko.SSHClient.connect(self, _hostname, port=port, username=username, password=password, pkey=pkey, key_filename=key_filename, timeout=timeout, allow_agent=False, look_for_keys=False) @@ -921,7 +921,7 @@ class X2GoControlSessionSTDOUT(paramiko.SSHClient): look_for_keys=look_for_keys) except TypeError: if _twofactorauth and password and passphrase and password != passphrase: - self.logger('your version of Paramiko/SSH does not support authentication workflows which require SSH key decryption in combination with two-factor authentication', loglevel=log.loglevel_NOTICE) + self.logger('your version of Paramiko/SSH does not support authentication workflows which require SSH key decryption in combination with two-factor authentication', loglevel=log.loglevel_WARNING) paramiko.SSHClient.connect(self, _hostname, port=port, username=username, password=password, pkey=None, key_filename=None, timeout=timeout, allow_agent=allow_agent, look_for_keys=look_for_keys) 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).