Correct the field name in the NewCustomImagesTable as it is a Recipe object it's self and not a container.
Signed-off-by: Michael Wood <[email protected]> --- 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 44a89d9..74af507 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) -- 2.5.0 -- _______________________________________________ toaster mailing list [email protected] https://lists.yoctoproject.org/listinfo/toaster
