summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTristan Maat <tristan.maat@codethink.co.uk>2017-08-16 18:41:38 +0100
committerTristan Maat <tristan.maat@codethink.co.uk>2017-09-28 11:30:50 +0100
commit7d9e974ecf3494e58d48cd0c29d5fbfe148010c0 (patch)
tree9c6326399ee4e97952a7d2c1e7261e00a4e27389
parentbe20f4113dd2c0b67e6223f83c86b9490224584a (diff)
downloadbuildstream-7d9e974ecf3494e58d48cd0c29d5fbfe148010c0.tar.gz
utils.py: Fix missing psutil reference
-rw-r--r--buildstream/utils.py2
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)