Fix VLC WinXP loading bug reported by /u/supersaw7

This commit is contained in:
Etoh 2014-04-25 19:53:44 +01:00
parent 57362721b5
commit b8a4bbae11

View File

@ -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: