Skip to content
Snippets Groups Projects
Commit d8a77f79 authored by Tristan Maat's avatar Tristan Maat
Browse files

utils.py: Fix missing psutil reference

parent 50adb345
No related branches found
No related tags found
Loading
......@@ -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)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment