diff --git a/Attrap_prefdpt.py b/Attrap_prefdpt.py index d23b81fe4e8b4eea02686709a36a2087102564b1..de0c3e3808b8df16843ccd1f041790740ce77389 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)