From: Enrico Jörns Date: Fri, 31 Mar 2023 10:26:14 +0000 (+0200) Subject: oeqa/targetcontrol: fix misspelled RuntimeError X-Git-Tag: 2023-04-mickledore~81 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=92ffc35052768c753a89b4839c70db87072437a2;p=thirdparty%2Fopenembedded%2Fopenembedded-core.git oeqa/targetcontrol: fix misspelled RuntimeError Signed-off-by: Enrico Jorns Signed-off-by: Richard Purdie --- diff --git a/meta/lib/oeqa/targetcontrol.py b/meta/lib/oeqa/targetcontrol.py index 1fdff82889a..b8d4ea8a70c 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)