This is an automated email from the git hooks/post-receive script. x2go pushed a change to branch release/0.4.0.x in repository python-x2go. from eb2f3b2 release 0.4.0.9 new 9557481 Don't parse default values to ConfigParser constructor when initializing an INI file. new 023800e don't raise an exception if tf-auth is requested new c583edc typo fix The 3 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: debian/changelog | 9 +++++++++ x2go/backends/control/_stdout.py | 1 - x2go/inifiles.py | 2 +- 3 files changed, 10 insertions(+), 2 deletions(-) -- 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 release/0.4.0.x in repository python-x2go. commit 9557481bfc0add6554ac67b0fc4a1a0323ce1bbc Author: Mike Gabriel <mike.gabriel@das-netzwerkteam.de> Date: Wed Jan 8 22:18:44 2014 +0100 Don't parse default values to ConfigParser constructor when initializing an INI file. Conflicts (resolved by Mike Gabriel): debian/changelog --- debian/changelog | 9 +++++++++ x2go/inifiles.py | 2 +- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/debian/changelog b/debian/changelog index 11ca201..c3db46e 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,12 @@ +python-x2go (0.4.0.10-0x2go1) UNRELEASED; urgency=low + + [ Mike Gabriel ] + * New upstream version (0.4.0.10): + - Don't parse default values to ConfigParser constructor when initializing + an INI file. + + -- Mike Gabriel <mike.gabriel@das-netzwerkteam.de> Sun, 05 Jan 2014 16:35:57 +0100 + python-x2go (0.4.0.9-0x2go1) unstable; urgency=low [ Mike Gabriel ] diff --git a/x2go/inifiles.py b/x2go/inifiles.py index 8d4d754..4556b30 100644 --- a/x2go/inifiles.py +++ b/x2go/inifiles.py @@ -95,7 +95,7 @@ class X2GoIniFile(object): # here as we do not want to run into name conflicts between # X2Go ini file options and method / property names in # SafeConfigParser... This is a pre-cautious approach... - self.iniConfig = ConfigParser.SafeConfigParser(self.defaultValues) + self.iniConfig = ConfigParser.SafeConfigParser() self.iniConfig.optionxform = str _create_file = False -- 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 release/0.4.0.x in repository python-x2go. commit c583edcfad7731bedca9624a14a3170f51a6b61a Author: Mike Gabriel <mike.gabriel@das-netzwerkteam.de> Date: Wed Feb 5 22:32:07 2014 +0100 typo fix --- debian/changelog | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/debian/changelog b/debian/changelog index c3db46e..46db356 100644 --- a/debian/changelog +++ b/debian/changelog @@ -2,7 +2,7 @@ python-x2go (0.4.0.10-0x2go1) UNRELEASED; urgency=low [ Mike Gabriel ] * New upstream version (0.4.0.10): - - Don't parse default values to ConfigParser constructor when initializing + - Don't pass default values to ConfigParser constructor when initializing an INI file. -- Mike Gabriel <mike.gabriel@das-netzwerkteam.de> Sun, 05 Jan 2014 16:35:57 +0100 -- 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 release/0.4.0.x in repository python-x2go. commit 023800e5c775aee43d9ed2e4c70435d50e77d1d1 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/_stdout.py | 1 - 1 file changed, 1 deletion(-) diff --git a/x2go/backends/control/_stdout.py b/x2go/backends/control/_stdout.py index 2ebbceb..4cf00b1 100644 --- a/x2go/backends/control/_stdout.py +++ b/x2go/backends/control/_stdout.py @@ -930,7 +930,6 @@ class X2GoControlSessionSTDOUT(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