From cdb3283d6330860837f1ce9fb18e1cba9aa89dc2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=80=9CSimone?= <“simoneruberto@outlook.it”> Date: Mon, 7 Oct 2024 21:36:46 +0200 Subject: [PATCH] updated datetime format to be compatible with Windows and Linux --- consts.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/consts.py b/consts.py index e716a21..c261982 100644 --- a/consts.py +++ b/consts.py @@ -58,7 +58,7 @@ # Examples: # '%Y-%m-%d %H:%M:%S' -> '2023-09-20 15:30:45' # '%d/%m/%Y %I:%M %p' -> '20/09/2023 03:30 PM' -DATETIME_FORMAT = '%d-%m-%Y %H:%M:%S' +DATETIME_FORMAT = '%d-%m-%Y_%H-%M-%S' # # Date format DATE_FORMAT = '%d-%m-%Y'