mirror of
https://git.kernel.org/pub/scm/network/wireless/iwd.git
synced 2024-11-21 22:09:23 +01:00
test-runner: remove reference to missing class member
The print statement was referencing self.name, which doesn't exist. Use self.args[0] instead.
This commit is contained in:
parent
a276243e9a
commit
c10ade711d
@ -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()
|
||||
|
Loading…
Reference in New Issue
Block a user