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

X2Go dev team git-admin at x2go.org
Wed Jan 8 15:27:43 CET 2014


The branch, build-baikal 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 -----------------------------------------------------------------
-----------------------------------------------------------------------

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