From c10ade711dd75918ed5accd249da37c4bc3d6785 Mon Sep 17 00:00:00 2001 From: James Prestwood Date: Fri, 24 Jun 2022 16:07:34 -0700 Subject: [PATCH] test-runner: remove reference to missing class member The print statement was referencing self.name, which doesn't exist. Use self.args[0] instead. --- tools/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/utils.py b/tools/utils.py index 66002f77..857aa1eb 100644 --- a/tools/utils.py +++ b/tools/utils.py @@ -259,7 +259,7 @@ class Process(subprocess.Popen): try: self.wait(timeout=15) except: - print("Process %s did not complete in 15 seconds!" % self.name) + print("Process %s did not complete in 15 seconds!" % self.args[0]) super().kill() self._cleanup()