From 34b22cf8971d244d0dd6ac10769915e1f455fd9e Mon Sep 17 00:00:00 2001 From: Michael Wood Date: Thu, 26 Nov 2015 16:44:34 +0000 Subject: bitbake: toaster: tables Fix invalid field name on NewCustomImagesTable Correct the field name in the NewCustomImagesTable as it is a Recipe object it's self and not a container. (Bitbake rev: ebd1c493d8b7fb9ee7b3e40c17165dc9c22ca795) Signed-off-by: Michael Wood Signed-off-by: Elliot Smith Signed-off-by: Richard Purdie --- bitbake/lib/toaster/toastergui/tables.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bitbake/lib/toaster/toastergui/tables.py b/bitbake/lib/toaster/toastergui/tables.py index 44a89d9857..74af507e92 100644 --- a/bitbake/lib/toaster/toastergui/tables.py +++ b/bitbake/lib/toaster/toastergui/tables.py @@ -545,7 +545,7 @@ class NewCustomImagesTable(ImageRecipesTable): "deploy to a machine", hideable=False, orderable=True, - field_name="recipe__name") + field_name="name") super(ImageRecipesTable, self).setup_columns(*args, **kwargs) -- cgit v1.2.3-54-g00ecf