[X2Go-Commits] python-x2go.git - twofactorauth (branch) updated: 0.1.1.2-3-g481acc6

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


The branch, twofactorauth has been updated
       via  481acc6867d37250684a1530c24b32fa3dbd49ae (commit)
      from  6192724a528b0d585823170f54c2eced49098169 (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                  |    1 +
 x2go/backends/terminal/_stdout.py |    3 ++-
 2 files changed, 3 insertions(+), 1 deletion(-)

The diff of changes is:
diff --git a/debian/changelog b/debian/changelog
index ce5e92e..2c4142f 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -4,6 +4,7 @@ python-x2go (0.1.1.3-0~x2go1) UNRELEASED; urgency=low
     - README/TODO update.
     - Desktop sharing: try ''<user>@<display>.0'' additionally to ''<user>@<display>'' when
       trying to find a desktop for sharing.
+    - Fix AttributeError if no graphical proxy instance has been declared yet.
 
  -- Mike Gabriel <mike.gabriel at das-netzwerkteam.de>  Fri, 01 Jul 2011 14:53:48 +0200
 
diff --git a/x2go/backends/terminal/_stdout.py b/x2go/backends/terminal/_stdout.py
index 4c439fd..24fc74e 100644
--- a/x2go/backends/terminal/_stdout.py
+++ b/x2go/backends/terminal/_stdout.py
@@ -962,5 +962,6 @@ class X2goTerminalSessionSTDOUT(object):
         STILL UNDOCUMENTED
 
         """
-        self.proxy.__del__()
+        if self.proxy is not None:
+            self.proxy.__del__()
 


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