summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/toaster/toastergui/widgets.py
diff options
context:
space:
mode:
Diffstat (limited to 'bitbake/lib/toaster/toastergui/widgets.py')
-rw-r--r--bitbake/lib/toaster/toastergui/widgets.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/bitbake/lib/toaster/toastergui/widgets.py b/bitbake/lib/toaster/toastergui/widgets.py
index 551c33cff7..034c867df4 100644
--- a/bitbake/lib/toaster/toastergui/widgets.py
+++ b/bitbake/lib/toaster/toastergui/widgets.py
@@ -79,7 +79,8 @@ class ToasterTable(TemplateView):
79 def get_context_data(self, **kwargs): 79 def get_context_data(self, **kwargs):
80 context = super(ToasterTable, self).get_context_data(**kwargs) 80 context = super(ToasterTable, self).get_context_data(**kwargs)
81 context['title'] = self.title 81 context['title'] = self.title
82 context['table_name'] = type(self).__name__.lower() 82 context['table_name'] = type(self).__name__.lower()
83 context['empty_state'] = self.empty_state
83 84
84 return context 85 return context
85 86