Browse Source

Bugfix: cron_task fails when last_update_success is null in DB.

pitchum 6 years ago
parent
commit
6e290ffee3
1 changed files with 2 additions and 0 deletions
  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']))