[X2Go-Commits] python-x2go.git - master (branch) updated: 0.4.0.8-25-g4cf74c4

X2Go dev team git-admin at x2go.org
Fri Nov 29 13:27:25 CET 2013


The branch, master has been updated
       via  4cf74c4e6142a28826e3ebd3516f70a51f18658b (commit)
      from  5419bcb1436997a88ee890adbb175079ad954df5 (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 4cf74c4e6142a28826e3ebd3516f70a51f18658b
Author: Mike Gabriel <mike.gabriel at das-netzwerkteam.de>
Date:   Fri Nov 29 13:26:53 2013 +0100

    change versioning scheme

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

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

The diff of changes is:
diff --git a/debian/changelog b/debian/changelog
index a2dfc87..e381607 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,4 +1,4 @@
-python-x2go (0.4.0.9-0~x2go1) UNRELEASED; urgency=low
+python-x2go (0.4.0.9-0x2go1) UNRELEASED; urgency=low
 
   [ Mike Gabriel ]
   * New upstream version (0.4.0.9):
diff --git a/x2go/utils.py b/x2go/utils.py
index ea091ad..84a073a 100644
--- a/x2go/utils.py
+++ b/x2go/utils.py
@@ -614,7 +614,10 @@ def find_session_window(session_name):
 
             for windowID in windowIDs:
                 window = display.create_resource_object('window', windowID)
-                name = window.get_wm_name()
+                try:
+                    name = window.get_wm_name()
+                except Xlib.error.BadWindow:
+                    continue
                 if name is not None and session_name in name:
                     success = True
                     break


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