[X2Go-Commits] python-x2go.git - release/0.4.0.x (branch) updated: b5333aed586ed72e33d8346eaf3f8be9594b680f

X2Go dev team git-admin at x2go.org
Tue Jan 7 16:16:17 CET 2014


The branch, release/0.4.0.x has been updated
       via  b5333aed586ed72e33d8346eaf3f8be9594b680f (commit)
      from  9b6ad6be40dd1f19f81e923d303201c3c336a0d8 (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:
 x2go/pulseaudio.py |    6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

The diff of changes is:
diff --git a/x2go/pulseaudio.py b/x2go/pulseaudio.py
index 9cc8300..e5e1563 100644
--- a/x2go/pulseaudio.py
+++ b/x2go/pulseaudio.py
@@ -84,10 +84,14 @@ class X2goPulseAudio(threading.Thread):
         cmd_line = [cmd]
         cmd_line.extend(cmd_options)
         self.logger('starting PulseAudio server with command line: %s' % ' '.join(cmd_line), loglevel=log.loglevel_DEBUG)
+        if _X2GOCLIENT_OS == 'Windows':
+            _stdin = file('nul', 'r')
+            _shell = True
         p = subprocess.Popen(cmd_line,
+                             stdin=_stdin,
                              stdout=subprocess.PIPE,
                              stderr=subprocess.STDOUT,
-                             shell=False,
+                             shell=_shell,
                             )
         gevent.sleep(5)
         _is_alive = p and (p.poll() is None)


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