summaryrefslogtreecommitdiffstats
path: root/testing/framework
diff options
context:
space:
mode:
authorDaniel Moody <dmoody256@gmail.com>2022-06-07 19:34:28 (GMT)
committerDaniel Moody <dmoody256@gmail.com>2022-06-07 19:34:28 (GMT)
commite3b2dd31e326a0d5b948fa35eae0cb1eefbbebf4 (patch)
treebfe33f448208385307744994e4d8154a0714521c /testing/framework
parent97a265e6da13a6a3827c599c23271b60aadef176 (diff)
downloadSCons-e3b2dd31e326a0d5b948fa35eae0cb1eefbbebf4.zip
SCons-e3b2dd31e326a0d5b948fa35eae0cb1eefbbebf4.tar.gz
SCons-e3b2dd31e326a0d5b948fa35eae0cb1eefbbebf4.tar.bz2
install psutil for testing and fix sider complaints
Diffstat (limited to 'testing/framework')
-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 34acb4d..2d3428c 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: