The branch, twofactorauth has been updated via bcaa862fc694e179e1e59f39e3f6e2f942e582c9 (commit) from 506fdeae30a7118130c102f1128d4e063862f264 (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: pyhoca/wxgui/frontend.py | 16 ++++++++++------ 1 file changed, 10 insertions(+), 6 deletions(-) The diff of changes is: diff --git a/pyhoca/wxgui/frontend.py b/pyhoca/wxgui/frontend.py index b462e46..51e11c5 100644 --- a/pyhoca/wxgui/frontend.py +++ b/pyhoca/wxgui/frontend.py @@ -34,13 +34,17 @@ try: except: pass -# Python X2go -import x2go - import os -import gevent -import gevent.monkey -gevent.monkey.patch_all() + +# Python X2go +try: + import x2go + import gevent + import gevent.monkey + gevent.monkey.patch_all() +except ImportError: + # to work around failing build dependencies during egg setup + pass import wx 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)).