summaryrefslogtreecommitdiff
path: root/testing
diff options
context:
space:
mode:
authorDaniel Moody <dmoody256@gmail.com>2022-06-07 14:34:28 -0500
committerDaniel Moody <dmoody256@gmail.com>2022-06-07 14:34:28 -0500
commite3b2dd31e326a0d5b948fa35eae0cb1eefbbebf4 (patch)
treebfe33f448208385307744994e4d8154a0714521c /testing
parent97a265e6da13a6a3827c599c23271b60aadef176 (diff)
downloadscons-git-e3b2dd31e326a0d5b948fa35eae0cb1eefbbebf4.tar.gz
install psutil for testing and fix sider complaints
Diffstat (limited to 'testing')
-rw-r--r--testing/framework/TestCmd.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/testing/framework/TestCmd.py b/testing/framework/TestCmd.py
index 34acb4d60..2d3428ce8 100644
--- a/testing/framework/TestCmd.py
+++ b/testing/framework/TestCmd.py
@@ -399,7 +399,7 @@ def clean_up_ninja_daemon(self, result_type):
try:
pid = int(f.read())
os.kill(pid, signal.SIGINT)
- except OSError:
+ except OSError:
pass
while True: