From 9d06c0b588065d7ddb372c429f7afc2d4eef8a2f Mon Sep 17 00:00:00 2001 From: Bastien Le Querrec <blq@laquadrature.net> Date: Sat, 11 Jan 2025 20:00:33 +0100 Subject: [PATCH] prefdpt: lint --- Attrap_prefdpt.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Attrap_prefdpt.py b/Attrap_prefdpt.py index d23b81f..de0c3e3 100644 --- a/Attrap_prefdpt.py +++ b/Attrap_prefdpt.py @@ -201,7 +201,7 @@ class Attrap_prefdpt(Attrap): if widget.has_regex('month') and (not date or date.year == 9999): # On ajoute l'année au nom du mois à tester si configuré dans le widget if widget.add_year_to_months and page_url[1]: - month = card['name'].strip()+' '+str(page_url[1].year) + month = card['name'].strip() + ' ' + str(page_url[1].year) else: month = card['name'].strip() date = Attrap.guess_date(month, widget.get_regex('month')).replace(day=1) -- GitLab