aboutsummaryrefslogtreecommitdiffstats
path: root/layerindex
diff options
context:
space:
mode:
Diffstat (limited to 'layerindex')
-rw-r--r--layerindex/context_processors.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/layerindex/context_processors.py b/layerindex/context_processors.py
index e2852ee2e9..c21c4a9161 100644
--- a/layerindex/context_processors.py
+++ b/layerindex/context_processors.py
@@ -12,10 +12,10 @@ def layerindex_context(request):
if site and site.name and site.name != 'example.com':
site_name = site.name
else:
- site_name = 'OpenEmbedded metadata index'
+ site_name = 'OpenEmbedded Layer Index'
return {
'all_branches': Branch.objects.exclude(name='oe-classic').order_by('sort_priority'),
'unpublished_count': LayerItem.objects.filter(status='N').count(),
'oe_classic': Branch.objects.filter(name='oe-classic'),
'site_name': site_name
- } \ No newline at end of file
+ }