diff options
author | Michael Wood <michael.g.wood@intel.com> | 2015-11-26 16:44:34 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-12-07 17:01:20 +0000 |
commit | 34b22cf8971d244d0dd6ac10769915e1f455fd9e (patch) | |
tree | 9e1dd4addfb1e6ff17a4ec61a988e2863ecc4d3c /bitbake | |
parent | 1c59846fc038428d3965866129149d98c8642b3f (diff) | |
download | poky-34b22cf8971d244d0dd6ac10769915e1f455fd9e.tar.gz |
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 <michael.g.wood@intel.com>
Signed-off-by: Elliot Smith <elliot.smith@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake')
-rw-r--r-- | bitbake/lib/toaster/toastergui/tables.py | 2 |
1 files changed, 1 insertions, 1 deletions
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): | |||
545 | "deploy to a machine", | 545 | "deploy to a machine", |
546 | hideable=False, | 546 | hideable=False, |
547 | orderable=True, | 547 | orderable=True, |
548 | field_name="recipe__name") | 548 | field_name="name") |
549 | 549 | ||
550 | super(ImageRecipesTable, self).setup_columns(*args, **kwargs) | 550 | super(ImageRecipesTable, self).setup_columns(*args, **kwargs) |
551 | 551 | ||