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:
@@ -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 == '':
|
||||
|
Reference in New Issue
Block a user