[X2go-Commits] python-x2go.git - master (branch) updated: 0.1.1.4-169-ge661c8d

X2Go dev team git-admin at x2go.org
Tue Apr 10 23:35:43 CEST 2012


The branch, master has been updated
       via  e661c8d7dff4dcfebaafbd3b116a8d7362a1f1a8 (commit)
      from  13dadf1fd8d4bf32b64ef9a966af8e76868a14e1 (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 -----------------------------------------------------------------
commit e661c8d7dff4dcfebaafbd3b116a8d7362a1f1a8
Author: Mike Gabriel <mike.gabriel at das-netzwerkteam.de>
Date:   Tue Apr 10 23:35:36 2012 +0200

    Fix unexpected keyword error during connect() in X2goSession instance.

-----------------------------------------------------------------------

Summary of changes:
 debian/changelog |    1 +
 x2go/session.py  |    4 ++++
 2 files changed, 5 insertions(+), 0 deletions(-)

The diff of changes is:
diff --git a/debian/changelog b/debian/changelog
index 716bbb5..f850c5a 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -76,6 +76,7 @@ python-x2go (0.1.2.0-0~x2go1) UNRELEASED; urgency=low
       sessions in published applications mode, provide hook method for
       auto-connecting interactively.
     - Provide X2goSession method get_session_profile_option().
+    - Fix unexpected keyword error during connect() in X2goSession instance.
   * Depend on python-xlib.
 
  -- Mike Gabriel <mike.gabriel at das-netzwerkteam.de>  Sat, 28 Sep 2012 01:44:21 +0100
diff --git a/x2go/session.py b/x2go/session.py
index 4aef0e2..0bab6b9 100644
--- a/x2go/session.py
+++ b/x2go/session.py
@@ -623,6 +623,10 @@ class X2goSession(object):
             del params['use_sshproxy']
         except KeyError: pass
         try:
+            self.auto_connect = params['auto_connect']
+            del params['auto_connect']
+        except KeyError: pass
+        try:
             self.auto_start_or_resume = params['auto_start_or_resume']
             del params['auto_start_or_resume']
         except KeyError: pass


hooks/post-receive
-- 
python-x2go.git (Python X2Go Client API)

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 "python-x2go.git" (Python X2Go Client API).




More information about the x2go-commits mailing list