This is an automated email from the git hooks/post-receive script.

x2go pushed a commit to annotated tag 0.5.0.1
in repository x2goclient.

commit e047a7607e02a2ab9bbcd9c98692e429f20e6910
Author: Mike Gabriel <mike.gabr...@das-netzwerkteam.de>
Date:   Sat Nov 10 20:03:48 2012 +0100

    make unpacking of stdin values more robust
---
 pyhoca-cli | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/pyhoca-cli b/pyhoca-cli
index 42fe2b6f..0e1718cc 100755
--- a/pyhoca-cli
+++ b/pyhoca-cli
@@ -374,7 +374,7 @@ Possible values for the --pack NX option are:
     if a.from_stdin:
 
         lightdm_remote_login_hash = sys.stdin.readline()
-        (a.username, a.password, a.server, a.command) = 
lightdm_remote_login_hash.split()
+        (a.username, a.password, a.server, a.command) = 
lightdm_remote_login_hash.split()[0:3]
         if ":" in a.server:
             a.remote_ssh_port = a.server.split(':')[-1]
             a.server = ':'.join(a.server.split(':')[:-1])

--
Alioth's /home/x2go-admin/maintenancescripts/git/hooks/post-receive-email on 
/srv/git/code.x2go.org/x2goclient.git
_______________________________________________
x2go-commits mailing list
x2go-commits@lists.x2go.org
https://lists.x2go.org/listinfo/x2go-commits

Reply via email to