The branch, master has been updated via e96a2aa11681e12b5120f28d6756aafe1400412b (commit) from 3499e74793409357bcf82fa3d69017341b94f59c (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 e96a2aa11681e12b5120f28d6756aafe1400412b Author: Mike Gabriel <mike.gabriel@das-netzwerkteam.de> Date: Sat Nov 3 16:29:25 2012 +0100 improve __repr__ methods ----------------------------------------------------------------------- Summary of changes: x2go/inifiles.py | 3 ++- x2go/registry.py | 3 ++- x2go/session.py | 3 ++- 3 files changed, 6 insertions(+), 3 deletions(-) The diff of changes is: diff --git a/x2go/inifiles.py b/x2go/inifiles.py index 0b843b2..996cf83 100644 --- a/x2go/inifiles.py +++ b/x2go/inifiles.py @@ -134,7 +134,8 @@ class X2goIniFile(object): result = 'X2goIniFile(' for p in dir(self): if '__' in p or not p in self.__dict__ or type(p) is types.InstanceType: continue - result += p + '=' + str(self.__dict__[p]) + result += p + '=' + str(self.__dict__[p]) + ',' + result = result.strip(',') return result + ')' def _storeValue(self, section, key, value): diff --git a/x2go/registry.py b/x2go/registry.py index e7af211..001ae6d 100644 --- a/x2go/registry.py +++ b/x2go/registry.py @@ -94,7 +94,8 @@ class X2goSessionRegistry(object): result = 'X2goSessionRegistry(' for p in dir(self): if '__' in p or not p in self.__dict__ or type(p) is types.InstanceType: continue - result += p + '=' + str(self.__dict__[p]) + result += p + '=' + str(self.__dict__[p]) + ',' + result = result.strip(',') return result + ')' def __call__(self, session_uuid): diff --git a/x2go/session.py b/x2go/session.py index 918128f..26f1d41 100644 --- a/x2go/session.py +++ b/x2go/session.py @@ -641,7 +641,8 @@ class X2goSession(object): result = 'X2goSession(' for p in dir(self): if '__' in p or not p in self.__dict__ or type(p) is types.InstanceType: continue - result += p + '=' + str(self.__dict__[p]) + ', ' + result += p + '=' + str(self.__dict__[p]) + ',' + result = result.strip(',') return result + ')' def __call__(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).