diff options
Diffstat (limited to 'tools/tasks.py')
-rw-r--r-- | tools/tasks.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/tasks.py b/tools/tasks.py index 4e03f85e..06408abd 100644 --- a/tools/tasks.py +++ b/tools/tasks.py @@ -391,7 +391,7 @@ class Process(object): def run(self): while True: try: - self.child.read_nonblocking() + self.child.read_nonblocking(timeout=None) except (pexpect.EOF, pexpect.TIMEOUT): break |