Parcourir la source

Bugfix: cron_task fails when last_update_success is null in DB.

pitchum il y a 6 ans
Parent
commit
6e290ffee3
1 fichiers modifiés avec 2 ajouts et 0 suppressions
  1. 2 0
      ffdnispdb/utils.py

+ 2 - 0
ffdnispdb/utils.py

@@ -59,6 +59,8 @@ def tosystemtz(d):
     """
     Convert the UTC datetime ``d`` to the system time zone defined in the settings
     """
+    if d is None:
+        return 'None'
     return d.astimezone(pytz.timezone(current_app.config['SYSTEM_TIME_ZONE']))