[X2Go-Commits] pyhoca-gui.git - twofactorauth (branch) updated: 0.4.0.5-7-g26556ff

X2Go dev team git-admin at x2go.org
Sat Sep 14 15:56:54 CEST 2013


The branch, twofactorauth has been updated
       via  26556ffc8d684ba70833f7344afbf05993c33e0b (commit)
      from  7819b75d3369b95c9ec50194e1fe24155de9a680 (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               |    2 ++
 pyhoca/wxgui/profilemanager.py |    2 +-
 2 files changed, 3 insertions(+), 1 deletion(-)

The diff of changes is:
diff --git a/debian/changelog b/debian/changelog
index 5ecfa4e..8fa59a0 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -2,6 +2,8 @@ pyhoca-gui (0.4.0.6-0~x2go1) UNRELEASED; urgency=low
 
   * New upstream version (0.4.0.6):
     - Fix AttributeError in setup.py when using py2exe build method.
+    - Only use default speed if it cannot be obtained from the session profile
+      configuration. Makes the speed setting now configurable. (Fixes: #274).
 
  -- Mike Gabriel <mike.gabriel at das-netzwerkteam.de>  Sun, 28 Jul 2013 19:56:49 +0200
 
diff --git a/pyhoca/wxgui/profilemanager.py b/pyhoca/wxgui/profilemanager.py
index 408e985..b0ce9c8 100644
--- a/pyhoca/wxgui/profilemanager.py
+++ b/pyhoca/wxgui/profilemanager.py
@@ -963,7 +963,7 @@ class PyHocaGUI_ProfileManager(wx.Dialog):
             self.UsePublishedApplications.Enable(False)
             self.RootlessSession.Enable(False)
 
-        if 0 < self.profile_config['speed'] <= 5:
+        if self.profile_config['speed'] in range(5):
             _link_speed = self.profile_config['speed']
         else:
             _link_speed = self.profileManagerDefaults['speed']


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)).




More information about the x2go-commits mailing list