[X2go-Commits] python-x2go.git - master (branch) updated: 0.1.0.3-12-gec6440b

X2go dev team git-admin at x2go.org
Mon Jun 20 20:59:08 CEST 2011


The branch, master has been updated
       via  ec6440b91b3c0156c5c555800edb5e3fb53a417e (commit)
      from  160d07f57f2b950cb51e0c4d181af1815a3afc9c (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 ec6440b91b3c0156c5c555800edb5e3fb53a417e
Author: Mike Gabriel <mike.gabriel at das-netzwerkteam.de>
Date:   Mon Jun 20 20:59:20 2011 +0200

    call desctructor of mimebox_queue on object destruction

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

Summary of changes:
 x2go/backends/terminal/_stdout.py |    4 ++++
 1 files changed, 4 insertions(+), 0 deletions(-)

The diff of changes is:
diff --git a/x2go/backends/terminal/_stdout.py b/x2go/backends/terminal/_stdout.py
index 38dcd24..cc9d0db 100644
--- a/x2go/backends/terminal/_stdout.py
+++ b/x2go/backends/terminal/_stdout.py
@@ -260,6 +260,7 @@ class X2goTerminalSessionSTDOUT(object):
         self.reverse_tunnels = {}
 
         self.print_queue = None
+        self.mimebox_queue = None
 
         if logger is None:
             self.logger = log.X2goLogger(loglevel=loglevel)
@@ -342,6 +343,9 @@ class X2goTerminalSessionSTDOUT(object):
             if self.print_queue is not None:
                 self.print_queue.__del__()
 
+            if self.mimebox_queue is not None:
+                self.mimebox_queue.__del__()
+
         except AttributeError:
             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