Switch to 24h time

This commit is contained in:
Andrew Reiter 2023-07-31 10:39:02 -04:00
parent 7d466f370b
commit bcbacf234a

View File

@ -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%p")
return datetime.datetime.fromtimestamp(timestamp).strftime("%Y_%m_%d_%H:%M")
def run(self) -> None:
logger.debug(