[X2go-Commits] pyhoca-gui.git - master (branch) updated: 0.1.0.2-15-ga47515c

X2go dev team git-admin at x2go.org
Wed Jun 22 02:06:50 CEST 2011


The branch, master has been updated
       via  a47515c812d9cce9d61602d0eed4d070c4554703 (commit)
      from  c53d704bed4c24773ebd4b04e765e86f69539396 (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 a47515c812d9cce9d61602d0eed4d070c4554703
Author: Mike Gabriel <mike.gabriel at das-netzwerkteam.de>
Date:   Wed Jun 22 02:06:34 2011 +0200

    exception catcher fixed

-----------------------------------------------------------------------

Summary of changes:
 pyhoca/wxgui/frontend.py |    4 +++-
 1 files changed, 3 insertions(+), 1 deletions(-)

The diff of changes is:
diff --git a/pyhoca/wxgui/frontend.py b/pyhoca/wxgui/frontend.py
index 21f44bd..f9ae74d 100644
--- a/pyhoca/wxgui/frontend.py
+++ b/pyhoca/wxgui/frontend.py
@@ -696,7 +696,9 @@ class PyHocaGUI(wx.App, x2go.X2goClient):
         self.notifier.send(_(u'%s - session failure') % profile_name, _(u'Forwarding tunnel request to [%s]:%s for session %s was denied by remote X2go/SSH server. Session startup failed.') % (chain_host, chain_port, session_name), icon='session_error', timeout=10000)
         try:
             self._temp_disabled_session_names[profile_name].remove(session_name)
-        except KeyError, ValueError:
+        except KeyError:
+            pass
+        except ValueError:
             pass
         if self.exit_on_disconnect:
             self.WakeUpIdle()


hooks/post-receive
-- 
pyhoca-gui.git (Python X2go Client (wxPython GUI))

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 "pyhoca-gui.git" (Python X2go Client (wxPython GUI)).




More information about the x2go-commits mailing list