From fb99a6baa6efbb1ae369f8331c645a1c7b4a2057 Mon Sep 17 00:00:00 2001 From: Nick Mowen Date: Sat, 7 Oct 2023 08:17:58 -0600 Subject: [PATCH] Fix export name --- 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(