mirror of
https://github.com/jketterl/openwebrx.git
synced 2026-04-06 15:06:00 +00:00
fix readline problem
This commit is contained in:
parent
8fe9bf6292
commit
b5c5bcb9f1
1 changed files with 1 additions and 1 deletions
|
|
@ -150,7 +150,7 @@ class WsjtChopper(threading.Thread):
|
|||
decoder = subprocess.Popen(
|
||||
self.decoder_commandline(file), stdout=subprocess.PIPE, cwd=self.tmp_dir, preexec_fn=lambda: os.nice(10)
|
||||
)
|
||||
for line in decoder.stdout.readline():
|
||||
for line in decoder.stdout:
|
||||
self.outputWriter.send(line)
|
||||
try:
|
||||
rc = decoder.wait(timeout=10)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue