]> git.ipfire.org Git - thirdparty/openembedded/openembedded-core-contrib.git/commitdiff
crumbs/builder.py: Fix typo for indefinite article
authorYi Zhao <yi.zhao@windriver.com>
Wed, 27 Nov 2013 09:40:56 +0000 (17:40 +0800)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Wed, 27 Nov 2013 14:42:53 +0000 (14:42 +0000)
Signed-off-by: Yi Zhao <yi.zhao@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
lib/bb/ui/crumbs/builder.py

index de002b9d9c6b9139248ac59651f9985cbd6b32f2..1ace5cf7140d10bf2886b233595b7b2e57bfeb0b 100755 (executable)
@@ -1352,7 +1352,7 @@ class Builder(gtk.Window):
 
     def runqemu_image(self, image_name, 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)
             button = dialog.add_button("Close", gtk.RESPONSE_OK)
             HobButton.style_button(button)