[X2Go-Commits] python-x2go.git - brokerclient (branch) updated: 0.2.0.10-44-ge96a2aa

X2Go dev team git-admin at x2go.org
Tue Jan 7 16:21:28 CET 2014


The branch, brokerclient 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 -----------------------------------------------------------------
-----------------------------------------------------------------------

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).




More information about the x2go-commits mailing list