From 133532a4631191d8a174cf1fbd2a5e1b4c4631d8 Mon Sep 17 00:00:00 2001 From: Michael Shamoon <4887959+shamoon@users.noreply.github.com> Date: Sun, 15 Jan 2023 15:06:35 -0800 Subject: [PATCH] Better Handle arbitrary ISO 8601 strings with dateutil.parser.isoparse --- src/documents/tasks.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/documents/tasks.py b/src/documents/tasks.py index b5dc264fb..0168b42ba 100644 --- a/src/documents/tasks.py +++ b/src/documents/tasks.py @@ -3,10 +3,10 @@ import logging import os import shutil import uuid -from datetime import datetime from pathlib import Path from typing import Type +import dateutil.parser import tqdm from asgiref.sync import async_to_sync from celery import shared_task @@ -105,7 +105,7 @@ def consume_file( # More types will be retained through JSON encode/decode if override_created is not None and isinstance(override_created, str): try: - override_created = datetime.fromisoformat(override_created) + override_created = dateutil.parser.isoparse(override_created) except Exception: pass