From 7f5fba08b71a340714eb813e37e0d09c9ada4210 Mon Sep 17 00:00:00 2001 From: Nicolas Mowen Date: Sat, 7 Oct 2023 08:40:20 -0600 Subject: [PATCH] Fix export name (#8090) --- frigate/record/export.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frigate/record/export.py b/frigate/record/export.py index 2e5de61c5..f608853fc 100644 --- a/frigate/record/export.py +++ b/frigate/record/export.py @@ -50,7 +50,7 @@ class RecordingExporter(threading.Thread): def get_datetime_from_timestamp(self, timestamp: int) -> str: """Convenience fun to get a simple date time from timestamp.""" - return datetime.datetime.fromtimestamp(timestamp).strftime("%Y_%m_%d_%H:%M") + return datetime.datetime.fromtimestamp(timestamp).strftime("%Y_%m_%d_%H_%M") def run(self) -> None: logger.debug(