diff options
author | Michael Wood <michael.g.wood@intel.com> | 2016-02-18 21:21:49 -0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-02-19 15:38:48 +0000 |
commit | 8796ac8a55fa994e7c1969395597b9c1557005df (patch) | |
tree | f18f41b8b53fd0708e479324be5fdbe7ed26a5d6 /bitbake | |
parent | 8469e5802590551dbf88a26539b9cfe5710c074d (diff) | |
download | poky-8796ac8a55fa994e7c1969395597b9c1557005df.tar.gz |
bitbake: toaster: SoftwareRecipesTable apply default order_by
Make sure the default orderby for the SoftwareRecipesTable is applied
(Bitbake rev: 1688608b537d8de840c6d1e4802ae41ca872e5bf)
Signed-off-by: Michael Wood <michael.g.wood@intel.com>
Signed-off-by: brian avery <avery.brian@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake')
-rw-r--r-- | bitbake/lib/toaster/toastergui/tables.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/bitbake/lib/toaster/toastergui/tables.py b/bitbake/lib/toaster/toastergui/tables.py index 86d111db73..5a589d3589 100644 --- a/bitbake/lib/toaster/toastergui/tables.py +++ b/bitbake/lib/toaster/toastergui/tables.py | |||
@@ -617,6 +617,7 @@ class SoftwareRecipesTable(RecipesTable): | |||
617 | super(SoftwareRecipesTable, self).setup_queryset(*args, **kwargs) | 617 | super(SoftwareRecipesTable, self).setup_queryset(*args, **kwargs) |
618 | 618 | ||
619 | self.queryset = self.queryset.filter(is_image=False) | 619 | self.queryset = self.queryset.filter(is_image=False) |
620 | self.queryset = self.queryset.order_by(self.default_orderby) | ||
620 | 621 | ||
621 | 622 | ||
622 | def setup_columns(self, *args, **kwargs): | 623 | def setup_columns(self, *args, **kwargs): |