[X2Go-Commits] python-x2go.git - release/0.4.0.x (branch) updated: 0.1.1.4-235-g91247a4

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


The branch, release/0.4.0.x has been updated
       via  91247a4fd865197fa21c2978689ba17c3171644d (commit)
      from  a27e513e6be7af2726231a6b7e52ca8dc0872e44 (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/cache.py |    6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

The diff of changes is:
diff --git a/x2go/cache.py b/x2go/cache.py
index 5a2b2f9..1e8c38f 100644
--- a/x2go/cache.py
+++ b/x2go/cache.py
@@ -152,7 +152,7 @@ class X2goListSessionsCache(object):
                 for session_name in self.x2go_listsessions_cache[profile_name]['sessions']:
                     self.x2go_listsessions_cache[profile_name]['mounts'].update(control_session.list_mounts(session_name))
         except x2go_exceptions.X2goControlSessionException, e:
-            if profile_name in self.x2go_listsessions_cache.keys()
+            if profile_name in self.x2go_listsessions_cache.keys():
                 del self.x2go_listsessions_cache[profile_name]
             raise e
 
@@ -167,7 +167,7 @@ class X2goListSessionsCache(object):
         try:
             self.x2go_listsessions_cache[profile_name]['desktops'] = control_session.list_desktops()
         except x2go_exceptions.X2goControlSessionException, e:
-            if profile_name in self.x2go_listsessions_cache.keys()
+            if profile_name in self.x2go_listsessions_cache.keys():
                 del self.x2go_listsessions_cache[profile_name]
             raise e
 
@@ -183,7 +183,7 @@ class X2goListSessionsCache(object):
             if control_session is not None:
                 self.x2go_listsessions_cache[profile_name]['sessions'] = control_session.list_sessions()
         except x2go_exceptions.X2goControlSessionException, e:
-            if profile_name in self.x2go_listsessions_cache.keys()
+            if profile_name in self.x2go_listsessions_cache.keys():
                 del self.x2go_listsessions_cache[profile_name]
             raise e
 


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