The branch, release/0.1.1.x has been updated via 73cf843144b4363d265b946567e7a4484e335558 (commit) from aaea664fff61becb7e1666e2fa16d3db71200447 (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 73cf843144b4363d265b946567e7a4484e335558 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 b1630d8..e8f0286 100644 --- a/debian/changelog +++ b/debian/changelog @@ -12,6 +12,8 @@ python-x2go (0.1.1.5-0~x2go1) UNRELEASED; 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 28fe55e..331119b 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).