3
0
Fork 0
mirror of https://github.com/YosysHQ/sby.git synced 2025-04-05 06:04:06 +00:00

Backward compatibility with Python 3.4 API

Signed-off-by: Clifford Wolf <clifford@clifford.at>
This commit is contained in:
Clifford Wolf 2019-03-21 20:09:44 +01:00
parent a2b85faa08
commit 32d7325446

View file

@ -234,7 +234,10 @@ class SbyJob:
if task.running:
fds.append(task.p.stdout)
select(fds, [], [], 1.0) == ([], [], [])
try:
select(fds, [], [], 1.0) == ([], [], [])
except InterruptedError:
pass
for task in self.tasks_running:
task.poll()