The branch, twofactorauth has been updated via 9ac619d8b2968ccfcd7a3e151e62fc50bc875fbb (commit) from ec2880a3c14c5b8c475b2c76109a7be61412085d (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 ----------------------------------------------------------------- ----------------------------------------------------------------------- Summary of changes: debian/changelog | 3 ++- x2go/x2go_exceptions.py | 4 ++-- 2 files changed, 4 insertions(+), 3 deletions(-) The diff of changes is: diff --git a/debian/changelog b/debian/changelog index cff8154..94bba01 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,6 +1,7 @@ python-x2go (0.4.0.3-0~x2go1) UNRELEASED; urgency=low - * Continue development... + * New upstream version (0.4.0.2): + - Fix inheritance of Paramiko/SSH exception. -- Mike Gabriel <mike.gabriel@das-netzwerkteam.de> Sun, 03 Mar 2013 15:57:44 +0100 diff --git a/x2go/x2go_exceptions.py b/x2go/x2go_exceptions.py index be69208..688a8ba 100644 --- a/x2go/x2go_exceptions.py +++ b/x2go/x2go_exceptions.py @@ -32,9 +32,9 @@ from defaults import X2GOCLIENT_OS as _X2GOCLIENT_OS # Python X2Go Exceptions AuthenticationException = paramiko.AuthenticationException """inherited from Python Paramiko library""" -PasswordRequiredException = paramiko.AuthenticationException +PasswordRequiredException = paramiko.PasswordRequiredException """inherited from Python Paramiko library""" -BadHostKeyException = paramiko.AuthenticationException +BadHostKeyException = paramiko.BadHostKeyException """inherited from Python Paramiko library""" SSHException = paramiko.SSHException """inherited from Python Paramiko library""" 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).