From b8a4bbae118e26b4f1ab9125460a85b6b288601b Mon Sep 17 00:00:00 2001 From: Etoh Date: Fri, 25 Apr 2014 19:53:44 +0100 Subject: [PATCH] Fix VLC WinXP loading bug reported by /u/supersaw7 --- syncplay/players/vlc.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/syncplay/players/vlc.py b/syncplay/players/vlc.py index 3bc25e0..3340eb9 100644 --- a/syncplay/players/vlc.py +++ b/syncplay/players/vlc.py @@ -257,7 +257,7 @@ class VlcPlayer(BasePlayer): self._vlcready = vlcReady self._vlcclosed = vlcClosed - self.__process = subprocess.Popen(call, stderr=subprocess.PIPE) + self.__process = subprocess.Popen(call, stderr=subprocess.PIPE, stdout=subprocess.PIPE) for line in iter(self.__process.stderr.readline, ''): if "[syncplay]" in line: if "Listening on host" in line: