The branch, build-baikal has been updated via 14b4e4ab4882ba30bceeed2701909b4de837451b (commit) from d1e96680cf2e9a6d5766729a919b8e418377c889 (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/about.py | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) The diff of changes is: diff --git a/pyhoca/wxgui/about.py b/pyhoca/wxgui/about.py index eae5413..8b55c2e 100644 --- a/pyhoca/wxgui/about.py +++ b/pyhoca/wxgui/about.py @@ -65,17 +65,20 @@ class PyHocaGUI_AboutFrame(wx.Frame): self._PyHocaGUI = _PyHocaGUI self._pyhoca_logger = self._PyHocaGUI._pyhoca_logger - fallback_about_image = 'pyhoca-about-logo.png' + fallback_about_image = 'pyhoca-about-logo' if about_image is None: about_image = fallback_about_image + if not about_image.lower().endswith('.png'): + about_image = '%s.png' % about_image + about_image = os.path.expanduser(about_image) if os.path.basename(about_image) == about_image: about_image = os.path.join(basepath.images_basepath, about_image) - if not (os.path.isfile(about_image) or os.path.islink(about_image)): + if not os.path.isfile(about_image): about_image = os.path.join(basepath.images_basepath, fallback_about_image) if about_what is None: 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)).