The branch, build-59a18b6e3b5d3f1dd8f07f26433d37fe5984a57d has been updated via f77d4e74480b8e21513dac98b8822d4925c11f62 (commit) from 73297d0b799254f887a920f00214869aadb2edb1 (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/profilemanager.py | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) The diff of changes is: diff --git a/debian/changelog b/debian/changelog index d961496..eb32b6a 100644 --- a/debian/changelog +++ b/debian/changelog @@ -31,6 +31,7 @@ pyhoca-gui (0.1.2.0-0~x2go1) UNRELEASED; urgency=low Reintroduce window icon in profile manager. - Use x2golistmounts to detect server-side unsharing of client-side folders. + - Remove pointed brackets from new/derived session profile names. * Depend on Python X2Go 0.1.2.0. * Install GNOME icons via dh_links. * Install X2Go icons with explicit install paths. diff --git a/pyhoca/wxgui/profilemanager.py b/pyhoca/wxgui/profilemanager.py index 0172b7d..a183876 100644 --- a/pyhoca/wxgui/profilemanager.py +++ b/pyhoca/wxgui/profilemanager.py @@ -126,11 +126,11 @@ class PyHocaGUI_ProfileManager(wx.Dialog): elif self.action == 'COPY' and self.profile_id: self.profile_name = self.session_profiles.to_profile_name(self.profile_id) self.profile_config = self.session_profiles.get_profile_config(self.profile_id) - self.profile_name = self.profile_config['name'] = '<%s %s>' % (_('settings derived from '), self.profile_name) + self.profile_name = self.profile_config['name'] = '%s %s' % (_('settings derived from '), self.profile_name) else: # if self.action == 'ADD' ... self.profile_config = self.session_profiles.default_profile_config() - self.profile_name = self.profile_config['name'] = '<%s>' %_('new session profile') + self.profile_name = self.profile_config['name'] = '%s' %_('new session profile') # we create a backup dict of our profile_config immediately (for being able to reset erroneously made changes) self.profile_config_bak = copy.deepcopy(self.profile_config) 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)).