diff options
-rw-r--r-- | buildstream/utils.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/buildstream/utils.py b/buildstream/utils.py index 17b3de41f..273d5dd0b 100644 --- a/buildstream/utils.py +++ b/buildstream/utils.py @@ -810,7 +810,7 @@ def _call(*popenargs, terminate=False, **kwargs): exit_code = None try: exit_code = proc.wait(20) - except TimeoutExpired: + except psutil.TimeoutExpired: # Did not terminate within the timeout: murder _kill_process_tree(process.pid) |