diff --git a/Attrap_prefdpt.py b/Attrap_prefdpt.py index 0aa49b69a6fecc37351f6a475653365c98354c37..109eeea41d7116a4b43ed34534d455727d04c77b 100644 --- a/Attrap_prefdpt.py +++ b/Attrap_prefdpt.py @@ -194,7 +194,7 @@ class Attrap_prefdpt(Attrap): # Si la configuration indique que les liens renvoient vers un RAA, on ajoute le lien à la liste des éléments if widget.link_to_raa or (widget.autodetect_links_to_raa and card['url'].endswith('.pdf')): - if date.year == 9999: + if date and date.year == 9999: date = None raa = Attrap.RAA(card['url'], date, card['name'].strip(), timezone=self.timezone) self.elements.append(raa)