summaryrefslogtreecommitdiffstats
path: root/bitbake/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:48 +0000
commit8796ac8a55fa994e7c1969395597b9c1557005df (patch)
treef18f41b8b53fd0708e479324be5fdbe7ed26a5d6 /bitbake/lib/toaster/toastergui/tables.py
parent8469e5802590551dbf88a26539b9cfe5710c074d (diff)
downloadpoky-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/lib/toaster/toastergui/tables.py')
-rw-r--r--bitbake/lib/toaster/toastergui/tables.py1
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):