]> code.ossystems Code Review - openembedded-core.git/commitdiff
commands.py: fix typo
authorChen Qi <Qi.Chen@windriver.com>
Fri, 23 Aug 2019 04:52:14 +0000 (12:52 +0800)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Tue, 27 Aug 2019 21:52:41 +0000 (22:52 +0100)
Signed-off-by: Chen Qi <Qi.Chen@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
meta/lib/oeqa/utils/commands.py

index 7140bc73d24b8d375036d42a261a52879ffeb653..03658928e13e84e3ef2924db9f731435dea974c9 100644 (file)
@@ -337,7 +337,7 @@ def runqemu(pn, ssh=True, runqemuparams='', image_fstype=None, launch_cmd=None,
         qemu.deploy()
         try:
             qemu.start(params=qemuparams, ssh=ssh, runqemuparams=runqemuparams, launch_cmd=launch_cmd, discard_writes=discard_writes)
-        except EXception as e:
+        except Exception as e:
             msg = str(e) + '\nFailed to start QEMU - see the logs in %s' % logdir
             if os.path.exists(qemu.qemurunnerlog):
                 with open(qemu.qemurunnerlog, 'r') as f: