From d796bb25f21ad8869ba8e088c310be8a69f96900 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micka=C3=ABl=20R=C3=A9mond?= Date: Fri, 27 Sep 2024 14:51:59 +0200 Subject: [PATCH] liberation recipe: Add missing space in date format --- recipes/liberation.recipe | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/recipes/liberation.recipe b/recipes/liberation.recipe index dd905bb940..999ec2e1d5 100644 --- a/recipes/liberation.recipe +++ b/recipes/liberation.recipe @@ -34,7 +34,7 @@ def json_to_html(raw): auth = '

{}

\n' dt = datetime.fromisoformat(data['last_updated_date'][:-1]) + timedelta(seconds=time.timezone) - dt = dt.strftime(m_fr[dt.month] + '%d, %Y') + dt = dt.strftime(m_fr[dt.month] + ' %d, %Y') a = [x['name'] for x in data['credits']['by']] if a: auth = auth.format(', '.join(a) + ' | ' + dt)