summaryrefslogtreecommitdiffstats
path: root/lib/toaster/toastergui/tables.py
diff options
context:
space:
mode:
authorMichael Wood <michael.g.wood@intel.com>2016-02-18 21:21:49 -0800
committerRichard Purdie <richard.purdie@linuxfoundation.org>2016-02-19 15:38:20 +0000
commit1688608b537d8de840c6d1e4802ae41ca872e5bf (patch)
tree9abb64ac37f23bf4ab17895bca3573c8f55fdd93 /lib/toaster/toastergui/tables.py
parent19bd63fc3a28dcbd0f531a5b06a037da34568bac (diff)
downloadbitbake-1688608b537d8de840c6d1e4802ae41ca872e5bf.tar.gz
toaster: SoftwareRecipesTable apply default order_by
Make sure the default orderby for the SoftwareRecipesTable is applied 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 'lib/toaster/toastergui/tables.py')
-rw-r--r--lib/toaster/toastergui/tables.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/toaster/toastergui/tables.py b/lib/toaster/toastergui/tables.py
index 86d111db7..5a589d358 100644
--- a/lib/toaster/toastergui/tables.py
+++ b/lib/toaster/toastergui/tables.py
@@ -617,6 +617,7 @@ class SoftwareRecipesTable(RecipesTable):
super(SoftwareRecipesTable, self).setup_queryset(*args, **kwargs)
self.queryset = self.queryset.filter(is_image=False)
+ self.queryset = self.queryset.order_by(self.default_orderby)
def setup_columns(self, *args, **kwargs):