summaryrefslogtreecommitdiffstats
path: root/bitbake/lib
diff options
context:
space:
mode:
Diffstat (limited to 'bitbake/lib')
-rw-r--r--bitbake/lib/toaster/orm/models.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/toaster/orm/models.py b/bitbake/lib/toaster/orm/models.py
index 567732518a..1cbf480acd 100644
--- a/bitbake/lib/toaster/orm/models.py
+++ b/bitbake/lib/toaster/orm/models.py
@@ -253,7 +253,7 @@ class Project(models.Model):
253 """ Returns QuerySet of all the compatible Recipes available to the 253 """ Returns QuerySet of all the compatible Recipes available to the
254 project including ones from Layers not currently added """ 254 project including ones from Layers not currently added """
255 queryset = Recipe.objects.filter( 255 queryset = Recipe.objects.filter(
256 layer_version__in=self.get_all_compatible_layer_versions()) 256 layer_version__in=self.get_all_compatible_layer_versions()).exclude(name__exact='')
257 257
258 return queryset 258 return queryset
259 259