The branch, twofactorauth has been updated via 6afbdcf155945259da773910f367eead03a0b381 (commit) from 0a1b275b3ef245c5baaf20709025ab55d5e50e95 (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: x2go/inifiles.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) The diff of changes is: diff --git a/x2go/inifiles.py b/x2go/inifiles.py index 3186d2d..d9edc97 100644 --- a/x2go/inifiles.py +++ b/x2go/inifiles.py @@ -132,9 +132,9 @@ class X2goIniFile(object): if type(value) is types.StringType: self.iniConfig.set(section,key,value) elif type(value) is types.BooleanType: - self.iniConfig.set(section,key,str(int(value))) + self.iniConfig.set(section,key,unicode(int(value))) else: - self.iniConfig.set(section,key,str(value)) + self.iniConfig.set(section,key,unicode(value)) def _fill_defaults(self): """\ 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).