From d1bd289a52d3974cbad4c015e8837cf9787fa445 Mon Sep 17 00:00:00 2001
From: Dominik George <nik@naturalnet.de>
Date: Tue, 27 Aug 2019 12:55:58 +0200
Subject: [PATCH] Fix week days calculation.

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

diff --git a/biscuit/apps/chronos/util.py b/biscuit/apps/chronos/util.py
index d315859e..b8aef31e 100644
--- a/biscuit/apps/chronos/util.py
+++ b/biscuit/apps/chronos/util.py
@@ -16,7 +16,7 @@ def week_days(week: Optional[int]) -> Sequence[date]:
     year = date.today().year
     wanted_week = week or current_week()
 
-    first_day = datetime.strptime('%d-%d-1' % (year, wanted_week), '%Y-%W-%w')
+    first_day = datetime.strptime('%d-%d-0' % (year, wanted_week), '%Y-%V-%u')
 
     return [(first_day + timedelta(days=offset)).date() for offset in range(0, 7)]
 
-- 
GitLab