From 598387fd61116eacb28c1945afbd7391b333bf09 Mon Sep 17 00:00:00 2001
From: Tom Teichler <tom.teichler@teckids.org>
Date: Sun, 15 Sep 2019 22:01:47 +0200
Subject: [PATCH] Add missing %s.

---
 biscuit/apps/chronos/views.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/biscuit/apps/chronos/views.py b/biscuit/apps/chronos/views.py
index 704a3501..d35a6686 100644
--- a/biscuit/apps/chronos/views.py
+++ b/biscuit/apps/chronos/views.py
@@ -127,7 +127,7 @@ def lessons_day(request: HttpRequest, when: Optional[str] = None) -> HttpRespons
     lessons_table = LessonsTable(lesson_periods.extra(select={'_week': week.week}).all())
     RequestConfig(request).configure(lessons_table)
 
-    context['current_head'] = _('Lessons') % (day)
+    context['current_head'] = _('Lessons %s') % (day)
     context['lessons_table'] = lessons_table
     context['day'] = day
     context['week'] = week
-- 
GitLab