diff --git a/tubearchivist/home/src/ta/helper.py b/tubearchivist/home/src/ta/helper.py index 6016d3c..b193640 100644 --- a/tubearchivist/home/src/ta/helper.py +++ b/tubearchivist/home/src/ta/helper.py @@ -91,7 +91,7 @@ def date_praser(timestamp: int | str) -> str: elif isinstance(timestamp, str): date_obj = datetime.strptime(timestamp, "%Y-%m-%d") - return datetime.strftime(date_obj, "%d %b, %Y") + return date_obj.date().isoformat() def time_parser(timestamp: str) -> float: