summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEnrico Jörns <ejo@pengutronix.de>2023-03-31 12:26:14 +0200
committerSteve Sakoman <steve@sakoman.com>2023-04-05 06:24:00 -1000
commit21c513fccbf743f9000c3b7b13fc4962c3ae5c7d (patch)
treea179fe3cc00c756ef5e2ae9995707f513acac3e2
parent21a31082b7100f82280c1e0b225e6d82b9f6e4f9 (diff)
downloadopenembedded-core-21c513fccbf743f9000c3b7b13fc4962c3ae5c7d.tar.gz
oeqa/targetcontrol: fix misspelled RuntimeError
Signed-off-by: Enrico Jorns <ejo@pengutronix.de> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> (cherry picked from commit 92ffc35052768c753a89b4839c70db87072437a2) Signed-off-by: Steve Sakoman <steve@sakoman.com>
-rw-r--r--meta/lib/oeqa/targetcontrol.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/lib/oeqa/targetcontrol.py b/meta/lib/oeqa/targetcontrol.py
index 1fdff82889..b8d4ea8a70 100644
--- a/meta/lib/oeqa/targetcontrol.py
+++ b/meta/lib/oeqa/targetcontrol.py
@@ -205,7 +205,7 @@ class QemuTarget(BaseTarget):
self.server_ip = self.runner.server_ip
self.connection = SSHControl(ip=self.ip, logfile=self.sshlog)
else:
- raise RuntimError("%s - FAILED to re-start qemu - check the task log and the boot log" % self.pn)
+ raise RuntimeError("%s - FAILED to re-start qemu - check the task log and the boot log" % self.pn)
def run_serial(self, command, timeout=60):
return self.runner.run_serial(command, timeout=timeout)