diff --git a/frigate/record/export.py b/frigate/record/export.py index 077f24638..2a97d83f2 100644 --- a/frigate/record/export.py +++ b/frigate/record/export.py @@ -42,7 +42,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_%I:%M") + return datetime.datetime.fromtimestamp(timestamp).strftime("%Y_%m_%d_%H:%M") def run(self) -> None: logger.debug(