1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-10-10 16:43:33 +02:00

Fix pipeclient.py for Windows

This commit is contained in:
Steve Daulton
2019-05-21 17:54:24 +01:00
parent af039f19ff
commit 1639df03a4

View File

@@ -208,7 +208,7 @@ class PipeClient(object):
line = read_pipe.readline()
# Stop timer as soon as we get first line of response.
stop_time = time.time()
while line != EOL:
while line != '\n':
message += line
line = read_pipe.readline()
if line == '':