The branch, master 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 ----------------------------------------------------------------- commit 91247a4fd865197fa21c2978689ba17c3171644d Author: Mike Gabriel <mike.gabriel@das-netzwerkteam.de> Date: Tue May 15 09:18:08 2012 +0200 missing colons (typos) ----------------------------------------------------------------------- Summary of changes: x2go/cache.py | 6 +++--- 1 files 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).