The branch, build-baikal has been updated via 623aa9ca6623ee269e78ebb4f9ed67aa4ce0e299 (commit) from 573ccd612a537b0e7c30f537051880dcd6bc0b08 (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: debian/changelog | 1 + pyhoca/wxgui/about.py | 2 ++ 2 files changed, 3 insertions(+) The diff of changes is: diff --git a/debian/changelog b/debian/changelog index 32e3a61..9a35bd8 100644 --- a/debian/changelog +++ b/debian/changelog @@ -17,6 +17,7 @@ pyhoca-gui (0.4.0.9-0~x2go1) UNRELEASED; urgency=low with double click from the list of available desktop sessions. - Allow for full path taskbar icon names, resolve tilde char in icon file path. + - Resolve tilde char in file path of the about image. * /debian/copyright: + Update file. Add entry for file icon2exe.py. * /debian/control: diff --git a/pyhoca/wxgui/about.py b/pyhoca/wxgui/about.py index db5bf55..f6b67b0 100644 --- a/pyhoca/wxgui/about.py +++ b/pyhoca/wxgui/about.py @@ -70,6 +70,8 @@ class PyHocaGUI_AboutFrame(wx.Frame): if about_image is None: about_image = fallback_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) 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)).