Adding check for None type object in date fields.

This commit is contained in:
Phrozyn 2019-03-28 18:09:03 -05:00
Родитель 0d13b6243d
Коммит 5a82201040
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: DBCDDDC9CF758282
1 изменённых файлов: 4 добавлений и 1 удалений

Просмотреть файл

@ -59,7 +59,10 @@ class message(object):
# reformat the date fields to iosformat
for date_key in self.date_keys:
if key_exists(date_key, message):
message = self.convert_key_date_format(date_key, message)
if message.get(date_key) == None:
continue
else:
message = self.convert_key_date_format(date_key, message)
# convert the dict to a dot dict for saner deep key/value processing
message = DotDict(message)