diff options
author | Dongxiao Xu <dongxiao.xu@intel.com> | 2012-03-29 20:01:20 +0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-03-29 21:25:54 +0100 |
commit | 00e262e49010cf9d05dccc3b27a972206b9ba1ac (patch) | |
tree | 5e4cd43fe353d3aad6b3224b9505c376e9922157 /bitbake | |
parent | 1c3ff8623f03a4995fc07fb9fa4a914e02b3b048 (diff) | |
download | poky-00e262e49010cf9d05dccc3b27a972206b9ba1ac.tar.gz |
Hob: Replace "local.conf" in error message
(Bitbake rev: c8dac1eefab79b12243468986c37f391c3421134)
Signed-off-by: Dongxiao Xu <dongxiao.xu@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake')
-rwxr-xr-x | bitbake/lib/bb/ui/crumbs/builder.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/bitbake/lib/bb/ui/crumbs/builder.py b/bitbake/lib/bb/ui/crumbs/builder.py index 5f8e01a9b0..9dd73dabaf 100755 --- a/bitbake/lib/bb/ui/crumbs/builder.py +++ b/bitbake/lib/bb/ui/crumbs/builder.py | |||
@@ -510,6 +510,7 @@ class Builder(gtk.Window): | |||
510 | 510 | ||
511 | def handler_command_failed_cb(self, handler, msg): | 511 | def handler_command_failed_cb(self, handler, msg): |
512 | if msg: | 512 | if msg: |
513 | msg = msg.replace("your local.conf", "Settings") | ||
513 | lbl = "<b>Error</b>\n" | 514 | lbl = "<b>Error</b>\n" |
514 | lbl = lbl + "%s\n\n" % msg | 515 | lbl = lbl + "%s\n\n" % msg |
515 | dialog = CrumbsMessageDialog(self, lbl, gtk.STOCK_DIALOG_WARNING) | 516 | dialog = CrumbsMessageDialog(self, lbl, gtk.STOCK_DIALOG_WARNING) |