mirror of
https://github.com/cookiengineer/audacity
synced 2026-02-03 18:23:17 +01:00
Fix pipeclient.py for Windows
This commit is contained in:
@@ -208,7 +208,7 @@ class PipeClient(object):
|
|||||||
line = read_pipe.readline()
|
line = read_pipe.readline()
|
||||||
# Stop timer as soon as we get first line of response.
|
# Stop timer as soon as we get first line of response.
|
||||||
stop_time = time.time()
|
stop_time = time.time()
|
||||||
while line != EOL:
|
while line != '\n':
|
||||||
message += line
|
message += line
|
||||||
line = read_pipe.readline()
|
line = read_pipe.readline()
|
||||||
if line == '':
|
if line == '':
|
||||||
|
|||||||
Reference in New Issue
Block a user