mirror of
https://git.yoctoproject.org/poky
synced 2026-05-31 12:49:46 +00:00
bitbake: crumbs/builder.py: Fix typo for indefinite article
(Bitbake rev: bc3c69e50d36ea5e43f55f7b3b1ff3b0ab3696ee) Signed-off-by: Yi Zhao <yi.zhao@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
@@ -1352,7 +1352,7 @@ class Builder(gtk.Window):
|
|||||||
|
|
||||||
def runqemu_image(self, image_name, kernel_name):
|
def runqemu_image(self, image_name, kernel_name):
|
||||||
if not image_name or not kernel_name:
|
if not image_name or not kernel_name:
|
||||||
lbl = "<b>Please select an %s to launch in QEMU.</b>" % ("kernel" if image_name else "image")
|
lbl = "<b>Please select %s to launch in QEMU.</b>" % ("a kernel" if image_name else "an image")
|
||||||
dialog = CrumbsMessageDialog(self, lbl, gtk.MESSAGE_INFO)
|
dialog = CrumbsMessageDialog(self, lbl, gtk.MESSAGE_INFO)
|
||||||
button = dialog.add_button("Close", gtk.RESPONSE_OK)
|
button = dialog.add_button("Close", gtk.RESPONSE_OK)
|
||||||
HobButton.style_button(button)
|
HobButton.style_button(button)
|
||||||
|
|||||||
Reference in New Issue
Block a user