This is an automated email from the git hooks/post-receive script. x2go pushed a change to branch master in repository pyhoca-gui. from aa3e4e9 Provide cmdline option --broker-cacertfile. Enable https:// connections with SSL certificates that have been self-signed against a non-public root-CA certificate file. new 7f005e5 fix for last commit The 1 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference. Summary of changes: pyhoca/wxgui/frontend.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) -- Alioth's /srv/git/_hooks_/post-receive-email on /srv/git/code.x2go.org/pyhoca-gui.git
This is an automated email from the git hooks/post-receive script. x2go pushed a commit to branch master in repository pyhoca-gui. commit 7f005e5efe88d6f1380354d673adf7097c5cc891 Author: Mike Gabriel <mike.gabriel@das-netzwerkteam.de> Date: Wed Mar 19 15:24:35 2014 +0100 fix for last commit --- pyhoca/wxgui/frontend.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/pyhoca/wxgui/frontend.py b/pyhoca/wxgui/frontend.py index 51e57af..08f9953 100644 --- a/pyhoca/wxgui/frontend.py +++ b/pyhoca/wxgui/frontend.py @@ -228,9 +228,10 @@ class PyHocaGUI(wx.App, x2go.X2GoClient): if self.args.broker_name: self.broker_name = self.args.broker_name - self.broker_cacertfile = os.path.expanduser(self.args.broker_cacertfile) - if self.broker_cacertfile and os.path.exists(self.broker_cacertfile): - os.environ['REQUESTS_CA_BUNDLE'] = self.broker_cacertfile + if self.args.broker_cacertfile is not None: + self.broker_cacertfile = os.path.expanduser(self.args.broker_cacertfile) + if self.broker_cacertfile and os.path.exists(self.broker_cacertfile): + os.environ['REQUESTS_CA_BUNDLE'] = self.broker_cacertfile try: if self.args.logon_window_position: -- Alioth's /srv/git/_hooks_/post-receive-email on /srv/git/code.x2go.org/pyhoca-gui.git