The branch, twofactorauth has been updated via 84aaee3290745b91dc3629e905c3076c792d2a64 (commit) from 6afbdcf155945259da773910f367eead03a0b381 (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, 3 insertions(+), 1 deletion(-) The diff of changes is: diff --git a/x2go/inifiles.py b/x2go/inifiles.py index d9edc97..2e1fbac 100644 --- a/x2go/inifiles.py +++ b/x2go/inifiles.py @@ -129,8 +129,10 @@ class X2goIniFile(object): @type value: C{str}, C{list}, C{bool}, ... """ - if type(value) is types.StringType: + if type(value) is types.UnicodeType: self.iniConfig.set(section,key,value) + elif type(value) is types.StringType: + self.iniConfig.set(section,key,unicode(value)) elif type(value) is types.BooleanType: self.iniConfig.set(section,key,unicode(int(value))) else: 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).