The branch, master has been updated via 0389489a4e5d4479ddfa48979d41749bef80245a (commit) from 1b32dfdcb3ef10f5ccb56ee6481e28b0b6519ef8 (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 0389489a4e5d4479ddfa48979d41749bef80245a Author: Mike Gabriel <mike.gabriel@das-netzwerkteam.de> Date: Fri Sep 9 16:17:59 2011 +0200 Make X2goTerminalSessionSTDOUT.has_command resistable against empty command strings. ----------------------------------------------------------------------- Summary of changes: debian/changelog | 2 ++ x2go/backends/terminal/_stdout.py | 2 ++ 2 files changed, 4 insertions(+), 0 deletions(-) The diff of changes is: diff --git a/debian/changelog b/debian/changelog index 69fc69a..6bb444a 100644 --- a/debian/changelog +++ b/debian/changelog @@ -18,6 +18,8 @@ python-x2go (0.1.1.5-0~x2go1) unstable; urgency=low - Fix for X2goSession.has_terminated method. - Fix for executing commands with arguments that contain a slash (thanks to Dick Kniep for digging this out). + - Make X2goTerminalSessionSTDOUT.has_command resistable against empty command + strings. -- Mike Gabriel <mike.gabriel@das-netzwerkteam.de> Tue, 19 Jul 2011 20:44:30 +0200 diff --git a/x2go/backends/terminal/_stdout.py b/x2go/backends/terminal/_stdout.py index f27bd13..04b58a3 100644 --- a/x2go/backends/terminal/_stdout.py +++ b/x2go/backends/terminal/_stdout.py @@ -693,6 +693,8 @@ class X2goTerminalSessionSTDOUT(object): Verify if the command <cmd> exists on the X2go server. """ + test_cmd = None; + cmd = cmd.strip('"').strip('"') if cmd.find('RDP') != -1: cmd = 'rdesktop' 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).